mirror of https://github.com/kubernetes/kops.git
Merge pull request #1881 from andrewwatson/master
Updated docs to reflect exporting new keys to ENV
This commit is contained in:
commit
53b5b099dc
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue