2020-06-19 12:41:19 -04:00
|
|
|
{
|
2020-11-06 17:18:48 -05:00
|
|
|
"AWSTemplateFormatVersion": "2010-09-09",
|
|
|
|
"Description": "A sample template",
|
|
|
|
"Resources": {
|
|
|
|
"DNS": {
|
|
|
|
"Type": "AWS::Route53::HostedZone",
|
|
|
|
"Properties": {
|
|
|
|
"HostedZoneConfig": {
|
|
|
|
"Comment": "Myhostedzoneforexample.com"
|
|
|
|
},
|
|
|
|
"Name": "example.com",
|
|
|
|
"VPCs": [
|
|
|
|
{
|
|
|
|
"VPCId": "vpc-abcd1234",
|
|
|
|
"VPCRegion": "ap-northeast-1"
|
|
|
|
},
|
|
|
|
{
|
2024-07-05 04:18:22 -04:00
|
|
|
"VPCId": "vpc-abcd5678",
|
2020-11-06 17:18:48 -05:00
|
|
|
"VPCRegion": "us-west-2"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"HostedZoneTags": [
|
|
|
|
{
|
|
|
|
"Key": "SampleKey1",
|
|
|
|
"Value": "SampleValue1"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"Key": "SampleKey2",
|
|
|
|
"Value": "SampleValue2"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-06-19 12:41:19 -04:00
|
|
|
}
|