Merge pull request #2204 from thorduri/docfix

Fixup aws_security_group doc example.
This commit is contained in:
Paul Hinze 2015-06-03 09:28:59 -05:00
commit f1439e6118
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"]
}