blob: d41cccb34410095caa6e448cd68356a57cca5593 [file] [log] [blame]
packer {
required_version = ">= v1.0.0"
}
data "mock" "content" {
foo = "content"
}
source "file" "chocolate" {
target = "chocolate.txt"
content = data.mock.content.foo
}
build {
sources = ["source.file.chocolate"]
}