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

11 lines
158 B
Terraform
Raw Normal View History

variable "key" {}
resource "aws_instance" "foo" {
foo = "bar"
provisioner "shell" {
2018-05-29 14:44:24 -05:00
command = "${var.key}"
when = "destroy"
}
}