diff --git a/hcl2template/components.go b/hcl2template/components.go new file mode 100644 index 000000000..b2063cd38 --- /dev/null +++ b/hcl2template/components.go @@ -0,0 +1,11 @@ +package hcl2template + +// ComponentKind helps enumerate what kind of components exist in this Package. +type ComponentKind int + +const ( + Builder ComponentKind = iota + Provisioner + PostProcessor + Datasource +)