terraform/internal/command/testdata/apply-destroy-targeted/main.tf

8 lines
125 B
HCL

resource "test_instance" "foo" {
count = 3
}
resource "test_load_balancer" "foo" {
instances = test_instance.foo.*.id
}