examples: add egress rule to aws-two-tier SG

pull/2146/head
Paul Hinze 11 years ago
parent 79583b937c
commit cf3bcbcc2b

@ -24,6 +24,14 @@ resource "aws_security_group" "default" {
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
}
# outbound internet access
egress {
from_port = 0
to_port = 0
protocol = "-1"
cidr_blocks = ["0.0.0.0/0"]
}
}

Loading…
Cancel
Save