opentofu/terraform/test-fixtures/apply-provisioner-multi-self-ref-count/main.tf
2016-08-31 11:36:51 -07:00

8 lines
115 B
HCL

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