Created
January 20, 2017 19:20
-
-
Save c3st7n/98905c8912892389f669fa6f1f3914b0 to your computer and use it in GitHub Desktop.
AWS CloudFormation Route53 MX record example
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
{ | |
"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." | |
] | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
May be of use to others: