* 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
12 lines
206 B
Go
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
|
|
)
|