Update awscli invocation for record set updates

The latest awscli requires a `file://` prefix for local change batch files.
This commit is contained in:
Anurag Goel 2017-01-26 14:42:56 -08:00 committed by GitHub
parent b419f2013d
commit f79daab90a
1 changed files with 1 additions and 1 deletions

View File

@ -147,7 +147,7 @@ aws route53 list-hosted-zones | jq '.HostedZones[] | select(.Name=="kubernetes.c
```
aws route53 change-resource-record-sets \
--hosted-zone-id <parent-zone-id> \
--change-batch subdomain.json
--change-batch file://subdomain.json
```
Now traffic to `*.kubernetes.com` will be routed to the correct subdomain hosted zone in Route 53.