Skip to content

Commit c25a58e

Browse files
committed
Updated network-acls example with IPv6 rules
1 parent ec228e0 commit c25a58e

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

examples/network-acls/main.tf

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,14 @@ locals {
105105
protocol = "tcp"
106106
cidr_block = "0.0.0.0/0"
107107
},
108+
{
109+
rule_number = 140
110+
rule_action = "allow"
111+
from_port = 80
112+
to_port = 80
113+
protocol = "tcp"
114+
ipv6_cidr_block = "::/0"
115+
},
108116
]
109117
public_outbound = [
110118
{
@@ -147,6 +155,14 @@ locals {
147155
protocol = "icmp"
148156
cidr_block = "10.0.0.0/22"
149157
},
158+
{
159+
rule_number = 150
160+
rule_action = "allow"
161+
from_port = 90
162+
to_port = 90
163+
protocol = "tcp"
164+
ipv6_cidr_block = "::/0"
165+
},
150166
]
151167
elasticache_outbound = [
152168
{
@@ -173,6 +189,14 @@ locals {
173189
protocol = "icmp"
174190
cidr_block = "10.0.0.0/22"
175191
},
192+
{
193+
rule_number = 150
194+
rule_action = "allow"
195+
from_port = 90
196+
to_port = 90
197+
protocol = "tcp"
198+
ipv6_cidr_block = "::/0"
199+
},
176200
]
177201
}
178202
}

0 commit comments

Comments
 (0)