opentofu/terraform/testdata/apply-provisioner-destroy-module/child/main.tf
2019-06-30 10:16:15 +02:00

11 lines
158 B
HCL

variable "key" {}
resource "aws_instance" "foo" {
foo = "bar"
provisioner "shell" {
command = "${var.key}"
when = "destroy"
}
}