Adrien Delorme 73b7499811
HCL2: version block: test validation & document version/availability (#10298)
* 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
2020-11-23 10:27:26 -05:00

13 lines
175 B
HCL

packer {
required_version = ">= v1.0.0"
}
source "file" "chocolate" {
target = "chocolate.txt"
content = "chocolate"
}
build {
sources = ["source.file.chocolate"]
}