terraform/configs/test-fixtures/valid-files/resources-provisioner-when-...

7 lines
129 B
HCL

resource "aws_security_group" "firewall" {
provisioner "local-exec" {
command = "echo hello"
when = "destroy"
}
}