Commit c25a58ee authored by Anton Babenko's avatar Anton Babenko

Updated network-acls example with IPv6 rules

parent ec228e00
...@@ -105,6 +105,14 @@ locals { ...@@ -105,6 +105,14 @@ locals {
protocol = "tcp" protocol = "tcp"
cidr_block = "0.0.0.0/0" cidr_block = "0.0.0.0/0"
}, },
{
rule_number = 140
rule_action = "allow"
from_port = 80
to_port = 80
protocol = "tcp"
ipv6_cidr_block = "::/0"
},
] ]
public_outbound = [ public_outbound = [
{ {
...@@ -147,6 +155,14 @@ locals { ...@@ -147,6 +155,14 @@ locals {
protocol = "icmp" protocol = "icmp"
cidr_block = "10.0.0.0/22" cidr_block = "10.0.0.0/22"
}, },
{
rule_number = 150
rule_action = "allow"
from_port = 90
to_port = 90
protocol = "tcp"
ipv6_cidr_block = "::/0"
},
] ]
elasticache_outbound = [ elasticache_outbound = [
{ {
...@@ -173,6 +189,14 @@ locals { ...@@ -173,6 +189,14 @@ locals {
protocol = "icmp" protocol = "icmp"
cidr_block = "10.0.0.0/22" cidr_block = "10.0.0.0/22"
}, },
{
rule_number = 150
rule_action = "allow"
from_port = 90
to_port = 90
protocol = "tcp"
ipv6_cidr_block = "::/0"
},
] ]
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment