Files
tree-sitter-jhcl/fuzz/corpus/hashicorp%terraforminternal%terraform%testdata%apply-provisioner-multi-self-ref%main.tf

9 lines
147 B
Terraform
Raw Normal View History

2021-09-17 20:53:40 +02:00
resource "aws_instance" "foo" {
count = 3
foo = "number ${count.index}"
provisioner "shell" {
command = "${self.foo}"
}
}