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

16 lines
280 B
HCL

resource "aws_instance" "foo" {
foo = "bar"
provisioner "shell" {
command = "one"
when = "destroy"
on_failure = "continue"
}
provisioner "shell" {
command = "two"
when = "destroy"
on_failure = "continue"
}
}