mirror of
https://github.com/hashicorp/packer.git
synced 2026-02-26 19:41:06 -05:00
28 lines
461 B
HCL
28 lines
461 B
HCL
source "file" "chocolate" {
|
|
content = "chocolate"
|
|
target = "chocolate.txt"
|
|
}
|
|
source "file" "vanilla" {
|
|
content = "vanilla"
|
|
}
|
|
|
|
build {
|
|
sources = [
|
|
"source.file.chocolate",
|
|
"source.file.vanilla"
|
|
]
|
|
|
|
post-processor "shell-local" {
|
|
name = "apple"
|
|
inline = [ "echo apple 'apple'" ]
|
|
}
|
|
|
|
post-processor "shell-local" {
|
|
name = "pear"
|
|
inline = [ "echo apple 'pear'" ]
|
|
}
|
|
|
|
post-processor "shell-local" {
|
|
name = "banana"
|
|
}
|
|
}
|