opentofu/terraform/testdata/apply-provisioner-destroy/main.tf
2019-06-30 10:16:15 +02:00

13 lines
197 B
HCL

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