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/empty_object/var.pkr.hcl

19 lines
205 B

variable "foo" {
default = []
}
variable "bar" {
default = {}
}
source "file" "base" {
}
build {
source "sources.file.base" {
target = "${var.bar.baz}.txt"
content = var.foo[0]
}
}