Skip to content

Instantly share code, notes, and snippets.

View c3st7n's full-sized avatar

Chris Tomlinson c3st7n

View GitHub Profile
@c3st7n
c3st7n / r53-mx-example.json
Created January 20, 2017 19:20
AWS CloudFormation Route53 MX record example
{
"Resources": {
"ExampleMXRecord": {
"Type": "AWS::Route53::RecordSet",
"Properties": {
"HostedZoneName": "example.com.",
"Comment": "My Example MX Record",
"Name": "example.com.",
"Type": "MX",
"TTL": "600",
@c3st7n
c3st7n / r53-txt-example.json
Created January 20, 2017 19:01
AWS CloudFormation Route53 TXT record example
{
"Resources": {
"ExampleTxtRecord": {
"Type": "AWS::Route53::RecordSet",
"Properties": {
"HostedZoneName": "example.com.",
"Comment": "My Example Txt Record",
"Name": "txt.example.com.",
"Type": "TXT",
"TTL": "600",