mirror of
https://github.com/hashicorp/packer.git
synced 2026-09-26 01:34:00 -04:00
15 lines
197 B
HCL
15 lines
197 B
HCL
data "mock" "content" {
|
|
foo = "chocolate"
|
|
}
|
|
|
|
source "file" "chocolate" {
|
|
content = data.mock.content.foo
|
|
target = "chocolate.txt"
|
|
}
|
|
|
|
build {
|
|
sources = [
|
|
"sources.file.chocolate",
|
|
]
|
|
}
|