opentofu/terraform/test-fixtures/apply-provisioner-destroy-module/child/main.tf

11 lines
155 B
Terraform
Raw Normal View History

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