Skip to content

Add more explicit comments on credential file #10

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

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
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,21 @@ If set to `true`, the master session credentials will be written to file and wil
2. [AWS CLI](http://docs.aws.amazon.com/cli/latest/userguide/installing.html)

### Create credentials file

| **NOTE** | This is _not_ an encrypted version of `~/.aws/credentials`, which is used by many AWS cli tools |
| -------- | --- |


```
cat <<CREDS | gpg -e -r GPG_KEY_ID > ~/.aws/credentials.gpg
export AWS_ACCESS_KEY_ID=.....
export AWS_SECRET_ACCESS_KEY=.....
CREDS
```

Do not delete the `~/.aws/credentials` file, as it is needed by AWS cli
tools that do not need/utilize `aws-assume-role`.

### Create mfadevice file

```
Expand Down