github.com/rstandt/terraform@v0.12.32-0.20230710220336-b1063613405c/terraform/testdata/apply-provisioner-destroy-outputs/mod2/main.tf (about) 1 variable "value" { 2 } 3 4 resource "aws_instance" "bar" { 5 provisioner "shell" { 6 command = "${var.value}" 7 when = "destroy" 8 } 9 } 10