opentofu/command/testdata/apply-destroy-targeted/main.tf
2019-06-30 10:16:15 +02:00

8 lines
132 B
HCL

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