superlint/.automation/test/cloudformation/cloudformation_good_3.json

17 lines
390 B
JSON
Raw Normal View History

2020-06-26 15:43:44 -04:00
{
2020-11-06 17:18:48 -05:00
"Resources": {
"myDNSRecord": {
"Type": "AWS::Route53::RecordSet",
"Properties": {
"HostedZoneId": "Z8VLZEXAMPLE",
"Name": "test.example.com",
"ResourceRecords": [
"192.0.2.99"
],
"TTL": 300,
"Type": "A"
}
}
}
2020-06-26 15:43:44 -04:00
}