update ENI test for SG egress constraint

This commit is contained in:
Clint Shryock 2015-05-01 16:01:18 -05:00
parent 85b1756c27
commit 1ed81da9a9
1 changed files with 7 additions and 0 deletions

View File

@ -181,6 +181,13 @@ resource "aws_security_group" "foo" {
vpc_id = "${aws_vpc.foo.id}"
description = "foo"
name = "foo"
egress {
from_port = 0
to_port = 0
protocol = "tcp"
cidr_blocks = ["10.0.0.0/16"]
}
}
resource "aws_network_interface" "bar" {