opentofu/terraform/test-fixtures/apply-provisioner-multi-self-ref/main.tf
2015-02-23 15:02:26 -08:00

9 lines
147 B
HCL

resource "aws_instance" "foo" {
count = 3
foo = "number ${count.index}"
provisioner "shell" {
command = "${self.foo}"
}
}