packer-cn/hcl2template/components.go
Adrien Delorme 0e3fcb589b
Implicit required_plugin blocks (#10732)
* used components that don't have a required_plugin block will make Packer 'implicitly' require those. These components are manually selected and commented for now.
* add tests
 * docs
2021-03-24 11:31:39 +01:00

12 lines
206 B
Go

package hcl2template
// ComponentKind helps enumerate what kind of components exist in this Package.
type ComponentKind int
const (
Builder ComponentKind = iota
Provisioner
PostProcessor
Datasource
)