Created
October 14, 2014 09:40
-
-
Save vidbina/8322c299faab15477e1c to your computer and use it in GitHub Desktop.
Amazon Route53 JSON config file examples
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
{ | |
"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." } | |
] | |
} | |
} | |
] | |
} |
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
{ | |
"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