Files
tree-sitter-jhcl/fuzz/corpus/hashicorp%terraforminternal%terraform%testdata%apply-provisioner-multi-self-ref-single%main.tf
2021-09-19 12:00:18 +02:00

10 lines
173 B
HCL

resource "aws_instance" "foo" {
count = 3
foo = "number ${count.index}"
provisioner "shell" {
command = aws_instance.foo[0].foo
order = count.index
}
}