Merge pull request #1101 from yikaus/patch-1

website/docs: protocol value for all traffic should be -1
pull/1100/merge
Mitchell Hashimoto 11 years ago
commit b4435e2c0d

@ -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"]
}
}

Loading…
Cancel
Save