opentofu/terraform/test-fixtures/apply-provisioner-destroy-continue/main.tf
2017-01-20 19:55:32 -08:00

16 lines
272 B
HCL

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