Remove extra = signs from Network ACL document
This commit is contained in:
parent
1182238f81
commit
5813c22c3e
|
@ -16,7 +16,7 @@ to your security groups in order to add an additional layer of security to your
|
||||||
```
|
```
|
||||||
resource "aws_network_acl" "main" {
|
resource "aws_network_acl" "main" {
|
||||||
vpc_id = "${aws_vpc.main.id}"
|
vpc_id = "${aws_vpc.main.id}"
|
||||||
egress = {
|
egress {
|
||||||
protocol = "tcp"
|
protocol = "tcp"
|
||||||
rule_no = 2
|
rule_no = 2
|
||||||
action = "allow"
|
action = "allow"
|
||||||
|
@ -25,7 +25,7 @@ resource "aws_network_acl" "main" {
|
||||||
to_port = 443
|
to_port = 443
|
||||||
}
|
}
|
||||||
|
|
||||||
ingress = {
|
ingress {
|
||||||
protocol = "tcp"
|
protocol = "tcp"
|
||||||
rule_no = 1
|
rule_no = 1
|
||||||
action = "allow"
|
action = "allow"
|
||||||
|
@ -34,7 +34,7 @@ resource "aws_network_acl" "main" {
|
||||||
to_port = 80
|
to_port = 80
|
||||||
}
|
}
|
||||||
|
|
||||||
tags = {
|
tags {
|
||||||
Name = "main"
|
Name = "main"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue