2019-10-14 11:02:53 -04:00
|
|
|
package hcl2template
|
|
|
|
|
|
|
|
import (
|
2019-12-17 05:25:56 -05:00
|
|
|
"fmt"
|
2020-04-16 05:58:54 -04:00
|
|
|
"time"
|
2020-01-16 06:08:39 -05:00
|
|
|
|
2019-10-14 11:02:53 -04:00
|
|
|
"github.com/hashicorp/hcl/v2"
|
2020-01-16 06:08:39 -05:00
|
|
|
"github.com/hashicorp/hcl/v2/gohcl"
|
2019-12-17 05:25:56 -05:00
|
|
|
"github.com/hashicorp/packer/packer"
|
2019-10-14 11:02:53 -04:00
|
|
|
)
|
|
|
|
|
Hcl2 input variables, local variables and functions (#8588)
Mainly redefine or reused what Terraform did.
* allow to used `variables`, `variable` and `local` blocks
* import the following functions and their docs from Terraform: abs, abspath, basename, base64decode, base64encode, bcrypt, can, ceil, chomp, chunklist, cidrhost, cidrnetmask, cidrsubnet, cidrsubnets, coalesce, coalescelist, compact, concat, contains, convert, csvdecode, dirname, distinct, element, file, fileexists, fileset, flatten, floor, format, formatdate, formatlist, indent, index, join, jsondecode, jsonencode, keys, length, log, lookup, lower, max, md5, merge, min, parseint, pathexpand, pow, range, reverse, rsadecrypt, setintersection, setproduct, setunion, sha1, sha256, sha512, signum, slice, sort, split, strrev, substr, timestamp, timeadd, title, trim, trimprefix, trimspace, trimsuffix, try, upper, urlencode, uuidv4, uuidv5, values, yamldecode, yamlencode, zipmap.
2020-02-06 05:49:21 -05:00
|
|
|
// ProvisionerBlock references a detected but unparsed provisioner
|
2019-12-17 05:25:56 -05:00
|
|
|
type ProvisionerBlock struct {
|
2020-04-16 05:58:54 -04:00
|
|
|
PType string
|
|
|
|
PName string
|
|
|
|
PauseBefore time.Duration
|
|
|
|
MaxRetries int
|
|
|
|
Timeout time.Duration
|
2020-01-16 06:08:39 -05:00
|
|
|
HCL2Ref
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *ProvisionerBlock) String() string {
|
|
|
|
return fmt.Sprintf(buildProvisionerLabel+"-block %q %q", p.PType, p.PName)
|
2019-10-14 11:02:53 -04:00
|
|
|
}
|
|
|
|
|
2019-12-17 05:25:56 -05:00
|
|
|
func (p *Parser) decodeProvisioner(block *hcl.Block) (*ProvisionerBlock, hcl.Diagnostics) {
|
2020-01-16 06:08:39 -05:00
|
|
|
var b struct {
|
2020-04-16 05:58:54 -04:00
|
|
|
Name string `hcl:"name,optional"`
|
|
|
|
PauseBefore string `hcl:"pause_before,optional"`
|
|
|
|
MaxRetries int `hcl:"max_retries,optional"`
|
|
|
|
Timeout string `hcl:"timeout,optional"`
|
|
|
|
Rest hcl.Body `hcl:",remain"`
|
2020-01-16 06:08:39 -05:00
|
|
|
}
|
|
|
|
diags := gohcl.DecodeBody(block.Body, nil, &b)
|
|
|
|
if diags.HasErrors() {
|
|
|
|
return nil, diags
|
|
|
|
}
|
2020-04-16 05:58:54 -04:00
|
|
|
|
2019-12-17 05:25:56 -05:00
|
|
|
provisioner := &ProvisionerBlock{
|
2020-04-16 05:58:54 -04:00
|
|
|
PType: block.Labels[0],
|
|
|
|
PName: b.Name,
|
|
|
|
MaxRetries: b.MaxRetries,
|
|
|
|
HCL2Ref: newHCL2Ref(block, b.Rest),
|
|
|
|
}
|
|
|
|
|
|
|
|
if b.PauseBefore != "" {
|
|
|
|
pauseBefore, err := time.ParseDuration(b.PauseBefore)
|
|
|
|
if err != nil {
|
|
|
|
return nil, append(diags, &hcl.Diagnostic{
|
|
|
|
Summary: "Failed to parse pause_before duration",
|
|
|
|
Detail: err.Error(),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
provisioner.PauseBefore = pauseBefore
|
|
|
|
}
|
|
|
|
|
|
|
|
if b.Timeout != "" {
|
|
|
|
timeout, err := time.ParseDuration(b.Timeout)
|
|
|
|
if err != nil {
|
|
|
|
return nil, append(diags, &hcl.Diagnostic{
|
|
|
|
Summary: "Failed to parse timeout duration",
|
|
|
|
Detail: err.Error(),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
provisioner.Timeout = timeout
|
2019-10-14 11:02:53 -04:00
|
|
|
}
|
2019-12-17 05:25:56 -05:00
|
|
|
|
|
|
|
if !p.ProvisionersSchemas.Has(provisioner.PType) {
|
|
|
|
diags = append(diags, &hcl.Diagnostic{
|
2020-01-16 06:08:39 -05:00
|
|
|
Summary: fmt.Sprintf("Unknown "+buildProvisionerLabel+" type %q", provisioner.PType),
|
2019-12-17 05:25:56 -05:00
|
|
|
Subject: block.LabelRanges[0].Ptr(),
|
2020-01-16 06:08:39 -05:00
|
|
|
Detail: fmt.Sprintf("known "+buildProvisionerLabel+"s: %v", p.ProvisionersSchemas.List()),
|
2019-12-17 05:25:56 -05:00
|
|
|
Severity: hcl.DiagError,
|
|
|
|
})
|
|
|
|
return nil, diags
|
|
|
|
}
|
|
|
|
return provisioner, diags
|
|
|
|
}
|
2019-10-14 11:02:53 -04:00
|
|
|
|
2020-04-09 05:14:37 -04:00
|
|
|
func (p *Parser) startProvisioner(source *SourceBlock, pb *ProvisionerBlock, ectx *hcl.EvalContext, generatedVars map[string]string) (packer.Provisioner, hcl.Diagnostics) {
|
2019-12-17 05:25:56 -05:00
|
|
|
var diags hcl.Diagnostics
|
2019-10-14 11:02:53 -04:00
|
|
|
|
2019-12-17 05:25:56 -05:00
|
|
|
provisioner, err := p.ProvisionersSchemas.Start(pb.PType)
|
|
|
|
if err != nil {
|
|
|
|
diags = append(diags, &hcl.Diagnostic{
|
2020-01-16 06:08:39 -05:00
|
|
|
Summary: fmt.Sprintf("failed loading %s", pb.PType),
|
|
|
|
Subject: pb.HCL2Ref.LabelsRanges[0].Ptr(),
|
2019-12-17 05:25:56 -05:00
|
|
|
Detail: err.Error(),
|
2019-10-14 11:02:53 -04:00
|
|
|
})
|
2019-12-17 05:25:56 -05:00
|
|
|
return nil, diags
|
2019-10-14 11:02:53 -04:00
|
|
|
}
|
Hcl2 input variables, local variables and functions (#8588)
Mainly redefine or reused what Terraform did.
* allow to used `variables`, `variable` and `local` blocks
* import the following functions and their docs from Terraform: abs, abspath, basename, base64decode, base64encode, bcrypt, can, ceil, chomp, chunklist, cidrhost, cidrnetmask, cidrsubnet, cidrsubnets, coalesce, coalescelist, compact, concat, contains, convert, csvdecode, dirname, distinct, element, file, fileexists, fileset, flatten, floor, format, formatdate, formatlist, indent, index, join, jsondecode, jsonencode, keys, length, log, lookup, lower, max, md5, merge, min, parseint, pathexpand, pow, range, reverse, rsadecrypt, setintersection, setproduct, setunion, sha1, sha256, sha512, signum, slice, sort, split, strrev, substr, timestamp, timeadd, title, trim, trimprefix, trimspace, trimsuffix, try, upper, urlencode, uuidv4, uuidv5, values, yamldecode, yamlencode, zipmap.
2020-02-06 05:49:21 -05:00
|
|
|
flatProvisionerCfg, moreDiags := decodeHCL2Spec(pb.HCL2Ref.Rest, ectx, provisioner)
|
2019-10-14 11:02:53 -04:00
|
|
|
diags = append(diags, moreDiags...)
|
2019-12-17 05:25:56 -05:00
|
|
|
if diags.HasErrors() {
|
|
|
|
return nil, diags
|
2019-10-14 11:02:53 -04:00
|
|
|
}
|
2019-12-17 12:42:15 -05:00
|
|
|
// manipulate generatedVars from builder to add to the interfaces being
|
|
|
|
// passed to the provisioner Prepare()
|
|
|
|
|
|
|
|
// configs := make([]interface{}, 2)
|
|
|
|
// configs = append(, flatProvisionerCfg)
|
2020-02-14 11:39:32 -05:00
|
|
|
// configs = append(configs, generatedVars)
|
2020-04-09 05:14:37 -04:00
|
|
|
err = provisioner.Prepare(source.builderVariables(), flatProvisionerCfg, generatedVars)
|
2019-12-17 05:25:56 -05:00
|
|
|
if err != nil {
|
|
|
|
diags = append(diags, &hcl.Diagnostic{
|
|
|
|
Severity: hcl.DiagError,
|
2020-01-16 06:08:39 -05:00
|
|
|
Summary: fmt.Sprintf("Failed preparing %s", pb),
|
2019-12-17 05:25:56 -05:00
|
|
|
Detail: err.Error(),
|
2020-01-16 06:08:39 -05:00
|
|
|
Subject: pb.HCL2Ref.DefRange.Ptr(),
|
2019-12-17 05:25:56 -05:00
|
|
|
})
|
|
|
|
return nil, diags
|
2019-10-14 11:02:53 -04:00
|
|
|
}
|
2019-12-17 05:25:56 -05:00
|
|
|
return provisioner, diags
|
2019-10-14 11:02:53 -04:00
|
|
|
}
|