Merge pull request #1881 from andrewwatson/master

Updated docs to reflect exporting new keys to ENV
This commit is contained in:
Justin Santa Barbara 2017-02-17 09:45:58 -05:00 committed by GitHub
commit 53b5b099dc
1 changed files with 7 additions and 2 deletions

View File

@ -72,8 +72,13 @@ You should record the SecretAccessKey and AccessKeyID in the returned JSON
output, and then use them below:
```bash
aws configure # Input your credentials here
aws iam list-users
# configure the aws client to use your new IAM user
aws configure # Use your new access and secret key here
aws iam list-users # you should see a list of all your IAM users here
# Because "aws configure" doesn't export these vars for kops to use, we export them now
export AWS_ACCESS_KEY_ID=<access key>
export AWS_SECRET_ACCESS_KEY=<secret key>
```
## Configure DNS