opentofu/terraform/test-fixtures/transform-destroy-edge-splat/main.tf
2017-02-07 10:53:12 -08:00

6 lines
93 B
HCL

resource "test" "A" {}
resource "test" "B" {
count = 2
value = "${test.A.*.value}"
}