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/hcl2_upgrade/undeclared-variables/expected.pkr.hcl

27 lines
349 B

variable "communicator_type" {
type = string
}
variable "foo" {
type = string
default = "bar"
}
variable "scriptpath" {
type = string
}
source "null" "autogenerated_1" {
communicator = "${var.communicator_type}"
}
build {
sources = ["source.null.autogenerated_1"]
provisioner "shell" {
script = "${var.scriptpath}"
}
}