Last active
December 23, 2015 19:19
-
-
Save n0ts/6681430 to your computer and use it in GitHub Desktop.
Route53 Batch JSON
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
A Record | |
{ | |
"Changes": [ | |
{ | |
"Action": "CREATE", | |
"ResourceRecordSet": { | |
"Name": "<FQDN>", | |
"Type": "A", | |
"TTL": 300, | |
"ResourceRecords": [ | |
{ | |
"Value": "<IP>" | |
} | |
] | |
} | |
} | |
] | |
} | |
CNAME Record | |
{ | |
"Changes": [ | |
{ | |
"Action": "CREATE", | |
"ResourceRecordSet": { | |
"Name": "<FQDN>", | |
"Type": "CNAME", | |
"TTL": 300, | |
"ResourceRecords": [ | |
{ | |
"Value": "<Target FQDN>" | |
} | |
] | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment