Merge pull request #2131 from ketzacoatl/patch-2

Correct to_port in egress example
This commit is contained in:
Chris Bednarski 2015-05-28 22:25:19 -07:00
commit caa8117a08
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ resource "aws_security_group" "allow_all" {
egress { egress {
from_port = 0 from_port = 0
to_port = 65535 to_port = 0
protocol = "-1" protocol = "-1"
cidr_blocks = ["0.0.0.0/0"] cidr_blocks = ["0.0.0.0/0"]
} }