You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
packer/command/test-fixtures/hcl/local-ds-validate.pkr.hcl

18 lines
267 B

data "null" "dep" {
input = "upload"
}
source "null" "test" {
communicator = "none"
}
build {
sources = ["sources.null.test"]
provisioner "file" {
source = "test-fixtures/hcl/force.pkr.hcl"
destination = "dest"
direction = "${data.null.dep.output}"
}
}