* HCL2: Test that the packer block passes in packer validate * HCL2: Test invalid packer blocks are invalid * docs: state from which version the packer block is available
13 lines
175 B
HCL
13 lines
175 B
HCL
packer {
|
|
required_version = ">= v1.0.0"
|
|
}
|
|
|
|
source "file" "chocolate" {
|
|
target = "chocolate.txt"
|
|
content = "chocolate"
|
|
}
|
|
|
|
build {
|
|
sources = ["source.file.chocolate"]
|
|
}
|