mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-28 01:41:48 -06:00
16 lines
280 B
HCL
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"
|
|
}
|
|
}
|