terraform/aws module: typo
This is what I get for thinking that the GitHub in-browser editor would be sufficient. -_-
This commit is contained in:
parent
e2230fb62e
commit
2fbde79415
|
@ -62,12 +62,12 @@ resource "aws_security_group" "consul" {
|
||||||
protocol = "tcp"
|
protocol = "tcp"
|
||||||
cidr_blocks = ["0.0.0.0/0"]
|
cidr_blocks = ["0.0.0.0/0"]
|
||||||
}
|
}
|
||||||
|
|
||||||
// This is for outbound internet access
|
// This is for outbound internet access
|
||||||
egress {
|
egress {
|
||||||
from_port = 0
|
from_port = 0
|
||||||
to_port = 0
|
to_port = 0
|
||||||
protocol = "-1"
|
protocol = "-1"
|
||||||
cidr_block = "0.0.0.0/0"
|
cidr_blocks = ["0.0.0.0/0"]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue