Skip to content

Instantly share code, notes, and snippets.

@vidbina
Created October 14, 2014 09:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vidbina/8322c299faab15477e1c to your computer and use it in GitHub Desktop.
Save vidbina/8322c299faab15477e1c to your computer and use it in GitHub Desktop.
Amazon Route53 JSON config file examples
{
"Comment": "Setting up my mailserver records for Google Mail",
"Changes": [
{
"Action": "CREATE",
"ResourceRecordSet": {
"Name": "example.com.",
"Type": "MX",
"TTL": 300,
"ResourceRecords": [
{ "Value": "10 aspmx.l.google.com." },
{ "Value": "20 alt1.aspmx.l.google.com." },
{ "Value": "20 alt2.aspmx.l.google.com." },
{ "Value": "30 aspmx2.googlemail.com." },
{ "Value": "30 aspmx3.googlemail.com." }
]
}
}
]
}
{
"Comment": "Setting up the TXT records for Google to verify my domain",
"Changes": [
{
"Action": "CREATE",
"ResourceRecordSet": {
"Name": "example.com.",
"Type": "TXT",
"TTL": 300,
"ResourceRecords": [
{ "Value": "\"google-site-verification=Supercalifragilisticexpialidocious\"" }
]
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment