mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-07 22:53:08 -06:00
2f6787c9b2
They need to conform to the test schema
13 lines
197 B
HCL
13 lines
197 B
HCL
resource "aws_instance" "foo" {
|
|
foo = "bar"
|
|
|
|
provisioner "shell" {
|
|
command = "create"
|
|
}
|
|
|
|
provisioner "shell" {
|
|
command = "destroy"
|
|
when = "destroy"
|
|
}
|
|
}
|