opentofu/terraform/test-fixtures/plan-cdb-depends-datasource/main.tf
James Bardin 40886218d5 Add test fixture for new CBD ancestor fix
This test will fail with a cycle before we check ancestors for
CreateBeforeDestroy.
2016-11-03 18:31:25 -04:00

12 lines
231 B
HCL

resource "aws_instance" "foo" {
count = 2
num = "2"
compute = "${element(data.aws_vpc.bar.*.id, count.index)}"
lifecycle { create_before_destroy = true }
}
data "aws_vpc" "bar" {
count = 2
foo = "${count.index}"
}