mirror of https://github.com/kubernetes/kops.git
docs/aws.md: change `...` to $(...) as backticks are deprecated
This commit is contained in:
parent
23319a0974
commit
e78f9f54c8
|
@ -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=`aws configure get aws_access_key_id`
|
||||
export AWS_SECRET_ACCESS_KEY=`aws configure get aws_secret_access_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
|
||||
|
|
Loading…
Reference in New Issue