Merge pull request #921 from hashicorp/b-tf-module-typo

terraform/aws module: typo
This commit is contained in:
Armon Dadgar 2015-05-08 11:36:46 -07:00
commit a709aab6d0
1 changed files with 2 additions and 2 deletions

View File

@ -62,12 +62,12 @@ resource "aws_security_group" "consul" {
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
}
// This is for outbound internet access
egress {
from_port = 0
to_port = 0
protocol = "-1"
cidr_block = "0.0.0.0/0"
cidr_blocks = ["0.0.0.0/0"]
}
}