blob: 14ad1258293dcf244d49e4cb103bd346ab97d58d [file] [log] [blame]
resource "aws_instance" "foo" {
foo = "bar"
provisioner "shell" {
command = "one"
when = "destroy"
on_failure = "continue"
}
provisioner "shell" {
command = "two"
when = "destroy"
}
}