update acceptance test with the correct depends_on declarations
This commit is contained in:
parent
14a4ea65ea
commit
670d22e18f
|
@ -556,7 +556,6 @@ resource "aws_instance" "foo" {
|
||||||
const testAccInstanceNetworkInstanceSecurityGroups = `
|
const testAccInstanceNetworkInstanceSecurityGroups = `
|
||||||
resource "aws_internet_gateway" "gw" {
|
resource "aws_internet_gateway" "gw" {
|
||||||
vpc_id = "${aws_vpc.foo.id}"
|
vpc_id = "${aws_vpc.foo.id}"
|
||||||
depends_on = ["aws_eip.foo_eip"]
|
|
||||||
}
|
}
|
||||||
|
|
||||||
resource "aws_vpc" "foo" {
|
resource "aws_vpc" "foo" {
|
||||||
|
@ -590,10 +589,12 @@ resource "aws_instance" "foo_instance" {
|
||||||
security_groups = ["${aws_security_group.tf_test_foo.id}"]
|
security_groups = ["${aws_security_group.tf_test_foo.id}"]
|
||||||
subnet_id = "${aws_subnet.foo.id}"
|
subnet_id = "${aws_subnet.foo.id}"
|
||||||
associate_public_ip_address = true
|
associate_public_ip_address = true
|
||||||
|
depends_on = ["aws_internet_gateway.gw"]
|
||||||
}
|
}
|
||||||
|
|
||||||
resource "aws_eip" "foo_eip" {
|
resource "aws_eip" "foo_eip" {
|
||||||
instance = "${aws_instance.foo_instance.id}"
|
instance = "${aws_instance.foo_instance.id}"
|
||||||
vpc = true
|
vpc = true
|
||||||
|
depends_on = ["aws_internet_gateway.gw"]
|
||||||
}
|
}
|
||||||
`
|
`
|
||||||
|
|
Loading…
Reference in New Issue