-
-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
--access-key=xxx
and --secret-key=yyy
options
#2
Comments
--access-key=xxx
and --access-secret=yyy
options--access-key=xxx
and --secret-key=yyy
options
Example code is here: https://boto3.amazonaws.com/v1/documentation/api/latest/guide/credentials.html#passing-credentials-as-parameters client = boto3.client(
's3',
aws_access_key_id=ACCESS_KEY,
aws_secret_access_key=SECRET_KEY,
aws_session_token=SESSION_TOKEN
) Since |
Being able to configure the |
I'm going to add four common options:
|
Quick test, using credentials created for a
This looks good to me. |
Help text looks like this now:
|
These will be used by all of the commands, as an optional alternative to the
boto3
default (see #1 (comment))The text was updated successfully, but these errors were encountered: