mirror of
https://github.com/hashicorp/packer.git
synced 2026-02-28 12:31:32 -05:00
* 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
11 lines
206 B
Go
11 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
|
|
)
|