Files
tree-sitter-jhcl/fuzz/corpus/hashicorp%terraforminternal%terraform%testdata%plan-data-depends-on%main.tf
2021-09-19 12:00:18 +02:00

15 lines
204 B
HCL

resource "test_resource" "a" {
}
data "test_data" "d" {
count = 1
depends_on = [
test_resource.a
]
}
resource "test_resource" "b" {
count = 1
foo = data.test_data.d[count.index].compute
}