opentofu/terraform/test-fixtures/transform-destroy-edge-splat/main.tf

6 lines
93 B
Terraform
Raw Normal View History

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