File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 11
2- # # Provision the inbound NACL
2+ # # Provision the inbound NACL
33resource "aws_network_acl" "nacl" {
44 vpc_id = var. vpc_id
5- tags = merge (var. tags , { Name = " ${ var . name } " })
5+ tags = merge (var. tags , { Name = var.name })
66}
77
8- # # Provision the outbound NACL
9- # # Provision the inbound NACL rules
8+ # # Provision the outbound NACL
9+ # # Provision the inbound NACL rules
1010resource "aws_network_acl_rule" "inbound" {
1111 for_each = local. inbound
1212
@@ -23,7 +23,7 @@ resource "aws_network_acl_rule" "inbound" {
2323 to_port = each. value . rule . to_port
2424}
2525
26- # # Provision the outbound NACL rules
26+ # # Provision the outbound NACL rules
2727resource "aws_network_acl_rule" "outbound" {
2828 for_each = local. outbound
2929
@@ -40,7 +40,7 @@ resource "aws_network_acl_rule" "outbound" {
4040 to_port = each. value . rule . to_port
4141}
4242
43- # # Associate the inbound NACL with the subnets
43+ # # Associate the inbound NACL with the subnets
4444resource "aws_network_acl_association" "nacl" {
4545 for_each = local. inbound
4646
You can’t perform that action at this time.
0 commit comments