opentofu/terraform/test-fixtures/apply-provisioner-self-ref/main.tf
2015-02-23 14:56:02 -08:00

8 lines
115 B
HCL

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