packer-cn/hcl2template/testdata/variables/unset_string_variable.pkr.hcl

15 lines
156 B
HCL
Raw Normal View History

2020-02-17 10:36:19 -05:00
variable "foo" {
type = string
}
build {
sources = [
"source.null.null-builder",
]
}
source "null" "null-builder" {
communicator = var.foo
}