Skip to content

Instantly share code, notes, and snippets.

@c3st7n
Created January 20, 2017 19:20
Show Gist options
  • Save c3st7n/98905c8912892389f669fa6f1f3914b0 to your computer and use it in GitHub Desktop.
Save c3st7n/98905c8912892389f669fa6f1f3914b0 to your computer and use it in GitHub Desktop.
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",
"ResourceRecords": [
"10 mail1.example.com",
"20 inbound-smtp.us-west-2.amazonaws.com."
]
}
}
}
}
@jeremyshantz
Copy link

Thanks @DanielBoa

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment