Merge pull request #1101 from yikaus/patch-1

website/docs: protocol value for all traffic should be -1
This commit is contained in:
Mitchell Hashimoto 2015-03-03 08:45:30 -08:00
commit b4435e2c0d

View File

@ -22,14 +22,14 @@ resource "aws_security_group" "allow_all" {
ingress {
from_port = 0
to_port = 65535
protocol = "tcp"
protocol = "-1"
cidr_blocks = ["0.0.0.0/0"]
}
egress {
from_port = 0
to_port = 65535
protocol = "tcp"
protocol = "-1"
cidr_blocks = ["0.0.0.0/0"]
}
}