Skip to content

Instantly share code, notes, and snippets.

@c3st7n
Created January 20, 2017 19:01
Show Gist options
  • Save c3st7n/2bec0a0a4020bf9088e497eb93dd6dc2 to your computer and use it in GitHub Desktop.
Save c3st7n/2bec0a0a4020bf9088e497eb93dd6dc2 to your computer and use it in GitHub Desktop.
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",
"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