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/hcp/multiple_sources.pkr.hcl

31 lines
384 B

source file "test" {
content = " "
target = "output"
}
source file "other" {
content = "b"
target = "output 2"
}
build {
name = "bucket-slug"
hcp_packer_registry {
description = <<EOT
Some description
EOT
bucket_labels = {
"foo" = "bar"
}
build_labels = {
"python_version" = "3.0"
}
}
sources = [
"sources.file.test",
"sources.file.other"
]
}