mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-06 09:15:49 -05:00
256b22786d
Close #5841 Close #5842
35 lines
1 KiB
JSON
35 lines
1 KiB
JSON
{
|
|
"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"
|
|
},
|
|
{
|
|
"VPCId": "vpc-abcd5678",
|
|
"VPCRegion": "us-west-2"
|
|
}
|
|
],
|
|
"HostedZoneTags": [
|
|
{
|
|
"Key": "SampleKey1",
|
|
"Value": "SampleValue1"
|
|
},
|
|
{
|
|
"Key": "SampleKey2",
|
|
"Value": "SampleValue2"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|