superlint/.automation/test/cfn/cfn_good_3.json

17 lines
355 B
JSON
Raw Normal View History

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