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