Skip to content

Commit

Permalink
updated aws tutorial so reader can copy and paste command instead of …
Browse files Browse the repository at this point in the history
…searching for aws key and secret
  • Loading branch information
Chi Hoang committed Oct 18, 2017
1 parent 38952a1 commit e6f6f42
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/aws.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ 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>
export AWS_ACCESS_KEY_ID=`aws configure get aws_access_key_id`
export AWS_SECRET_ACCESS_KEY=`aws configure get aws_secret_access_key`
```

## Configure DNS
Expand Down

0 comments on commit e6f6f42

Please sign in to comment.