Created
January 20, 2017 19:01
-
-
Save c3st7n/2bec0a0a4020bf9088e497eb93dd6dc2 to your computer and use it in GitHub Desktop.
AWS CloudFormation Route53 TXT 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": { | |
"ExampleTxtRecord": { | |
"Type": "AWS::Route53::RecordSet", | |
"Properties": { | |
"HostedZoneName": "example.com.", | |
"Comment": "My Example Txt Record", | |
"Name": "txt.example.com.", | |
"Type": "TXT", | |
"TTL": "600", | |
"ResourceRecords": [ | |
"This is the content of my text record" | |
] | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment