github.com/hashicorp/packer@v1.14.3/hcl2template/components.go (about)

     1  // Copyright (c) HashiCorp, Inc.
     2  // SPDX-License-Identifier: BUSL-1.1
     3  
     4  package hcl2template
     5  
     6  // ComponentKind helps enumerate what kind of components exist in this Package.
     7  type ComponentKind int
     8  
     9  const (
    10  	Builder ComponentKind = iota
    11  	Provisioner
    12  	PostProcessor
    13  	Datasource
    14  )