Skip to content
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

Added README note about ~/.aws/credentials #39

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ This repo provides some ansible to bring up an Origin cluster of the specified v
* AWS_ACCESS_KEY_ID
* AWS_SECRET_ACCESS_KEY
* AWS_REGION
* For EC2, as an alternative to setting AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY in the shell environment, they can be put into `~/.aws/credentials` as follows (leaving AWS_REGION as an environment variable):
```
[default]
aws_access_key_id=<AWS_ACCESS_KEY_ID>
aws_secret_access_key=<AWS_SECRET_ACCESS_KEY>
```
* For EC2 ensure your private key exists at the location referenced by ec2_private_key_file in config.yml
* Run `ansible-playbook deploy.yml`

Expand Down