Fixup aws_security_group doc example.

Both to_ and from_ port must be zero to use protocol -1.
This commit is contained in:
Thordur Bjornsson 2015-06-03 11:01:54 +02:00
parent 0b2b9e844f
commit f3a86114ae
1 changed files with 1 additions and 1 deletions

View File

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