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 5969112 commit 46c2f90Copy full SHA for 46c2f90
examples/complete/example.tf
@@ -52,4 +52,24 @@ module "subnets" {
52
public_subnet_assign_ipv6_address_on_creation = true
53
enable_ipv6 = true
54
private_subnet_assign_ipv6_address_on_creation = true
55
+ private_inbound_acl_rules = [
56
+ {
57
+ rule_number = 100
58
+ rule_action = "allow"
59
+ from_port = 0
60
+ to_port = 0
61
+ protocol = "-1"
62
+ cidr_block = module.vpc.vpc_cidr_block
63
+ }
64
+ ]
65
+ private_outbound_acl_rules = [
66
67
68
69
70
71
72
73
74
75
}
0 commit comments