2023-03-02 15:37:05 -05:00
|
|
|
// Copyright (c) HashiCorp, Inc.
|
2023-08-10 15:53:29 -07:00
|
|
|
// SPDX-License-Identifier: BUSL-1.1
|
2023-03-02 15:37:05 -05:00
|
|
|
|
2021-03-24 11:31:39 +01:00
|
|
|
package hcl2template
|
|
|
|
|
|
|
|
|
|
// ComponentKind helps enumerate what kind of components exist in this Package.
|
|
|
|
|
type ComponentKind int
|
|
|
|
|
|
|
|
|
|
const (
|
|
|
|
|
Builder ComponentKind = iota
|
|
|
|
|
Provisioner
|
|
|
|
|
PostProcessor
|
|
|
|
|
Datasource
|
|
|
|
|
)
|