packer-cn/command/test-fixtures/hcl-only-except/build.pkr.hcl

23 lines
320 B
HCL

source "file" "chocolate" {
content = "chocolate"
target = "chocolate.txt"
}
source "file" "vanilla" {
content = "vanilla"
target = "vanilla.txt"
}
source "file" "cherry" {
content = "cherry"
target = "cherry.txt"
}
build {
sources = [
"file.chocolate",
"file.vanilla",
"file.cherry",
]
}