opentofu/terraform/test-fixtures/apply-provisioner-destroy/main.tf
2017-01-20 18:07:51 -08:00

13 lines
189 B
HCL

resource "aws_instance" "foo" {
foo = "bar"
provisioner "shell" {
foo = "create"
}
provisioner "shell" {
foo = "destroy"
when = "destroy"
}
}