* core: Decode when in HCL2 decoding mode; reset the whole struct before preparing it. * HCL2: add path variables + docs & tests Co-authored-by: Megan Marsh <megan@hashicorp.com>
14 lines
245 B
HCL
14 lines
245 B
HCL
source "null" "example" {
|
|
communicator = "none"
|
|
}
|
|
|
|
build {
|
|
sources = [
|
|
"source.null.example"
|
|
]
|
|
provisioner "shell-local" {
|
|
script = "./${path.root}/hello.sh"
|
|
environment_vars = ["USER=packeruser", "BUILDER=${upper(build.ID)}"]
|
|
}
|
|
}
|