Skip to content

Commit 1831269

Browse files
committed
chore: resolved the issue on linting
1 parent cc9d2c5 commit 1831269

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

modules/nacls/main.tf

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11

2-
## Provision the inbound NACL
2+
## Provision the inbound NACL
33
resource "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
1010
resource "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
2727
resource "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
4444
resource "aws_network_acl_association" "nacl" {
4545
for_each = local.inbound
4646

0 commit comments

Comments
 (0)