23 lines
320 B
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",
|
||
|
]
|
||
|
}
|