-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmaster.template
35 lines (35 loc) · 988 Bytes
/
master.template
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"Resources": {
"myVPC": {
"Type": "AWS::EC2::VPC",
"Properties": {
"CidrBlock": "10.120.0.0/16",
"EnableDnsHostnames": false,
"EnableDnsSupport": false,
"InstanceTenancy": "dedicated",
"Tags": []
}
},
"myCompliantNetworkAcl": {
"Type": "AWS::EC2::NetworkAcl",
"Properties": {
"VpcId": {
"Ref": "myVPC"
}
}
},
"myCompliantNetworkAclInboundRule": {
"Type": "AWS::EC2::NetworkAclEntry",
"Properties": {
"CidrBlock": "0.0.0.0/0",
"Egress": false,
"NetworkAclId": {
"Ref": "myCompliantNetworkAcl"
},
"Protocol": -1,
"RuleAction": "deny",
"RuleNumber": 100
}
}
}
}