We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 784af81 commit 9922fa3Copy full SHA for 9922fa3
infrastructure/stacks/networking/network_acls.tf
@@ -10,8 +10,9 @@ resource "aws_network_acl" "private" {
10
# Allow all outbound traffic from private subnets
11
egress {
12
rule_no = 100
13
- action = "allow"
14
- cidr_block = local.vpc_cidr_block
+ action = "allow"
+ # cidr_block = local.vpc_cidr_block
15
+ cidr_block = "0.0.0.0/0" #TODO
16
protocol = -1
17
from_port = 0
18
to_port = 0
0 commit comments