update ENI test for SG egress constraint
This commit is contained in:
parent
85b1756c27
commit
1ed81da9a9
|
@ -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" {
|
||||
|
|
Loading…
Reference in New Issue