packer-cn/command/test-fixtures/hcl/validation/wrong_pause_before.pkr.hcl
2021-04-26 17:31:22 +02:00

13 lines
205 B
HCL

source "null" "example1" {
communicator = "none"
}
build {
sources = ["source.null.example1"]
provisioner "shell-local" {
pause_before = "5"
inline = ["echo Did I wait a bit?"]
}
}