Skip to content

Instantly share code, notes, and snippets.

@n0ts
Last active December 23, 2015 19:19
Show Gist options
  • Save n0ts/6681430 to your computer and use it in GitHub Desktop.
Save n0ts/6681430 to your computer and use it in GitHub Desktop.
Route53 Batch JSON
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