Skip to content

Commit 9922fa3

Browse files
NACL restrictions relaxed: allow all outbound traffic from private subnets
1 parent 784af81 commit 9922fa3

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

infrastructure/stacks/networking/network_acls.tf

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@ resource "aws_network_acl" "private" {
1010
# Allow all outbound traffic from private subnets
1111
egress {
1212
rule_no = 100
13-
action = "allow"
14-
cidr_block = local.vpc_cidr_block
13+
action = "allow"
14+
# cidr_block = local.vpc_cidr_block
15+
cidr_block = "0.0.0.0/0" #TODO
1516
protocol = -1
1617
from_port = 0
1718
to_port = 0

0 commit comments

Comments
 (0)