opentofu/terraform/test-fixtures/apply-provisioner-destroy/main.tf
James Bardin 2f6787c9b2 core: update provisioner test fixtures
They need to conform to the test schema
2018-10-16 18:49:20 -07:00

13 lines
197 B
HCL

resource "aws_instance" "foo" {
foo = "bar"
provisioner "shell" {
command = "create"
}
provisioner "shell" {
command = "destroy"
when = "destroy"
}
}