mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-10 08:03:08 -06:00
13 lines
189 B
HCL
13 lines
189 B
HCL
resource "aws_instance" "foo" {
|
|
foo = "bar"
|
|
|
|
provisioner "shell" {
|
|
foo = "create"
|
|
}
|
|
|
|
provisioner "shell" {
|
|
foo = "destroy"
|
|
when = "destroy"
|
|
}
|
|
}
|