-
Notifications
You must be signed in to change notification settings - Fork 101
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
Source credentials from the environment #61
Comments
Was this resolved? |
This is covered in the wiki and when you run Awpx was built so that it runs in a docker container, and the 'awspx' command on your host is just a wrapper to exec into the container. Looking into the awspx file, there is this part that handles the commands:
So it looks like the environment variables are passed through to the container - which is what we want Starting at 287 in cli.py we get the following:
So, by default, the So you need to add the
And the boto client will use it's logic to pull the creds from environment variables |
The text was updated successfully, but these errors were encountered: