diff --git a/builder/hyperone/config.go b/builder/hyperone/config.go index ca1cf9b2c..102517420 100644 --- a/builder/hyperone/config.go +++ b/builder/hyperone/config.go @@ -168,7 +168,11 @@ func NewConfig(raws ...interface{}) (*Config, []string, error) { } if c.ChrootMountPath == "" { - c.ChrootMountPath = "/mnt/packer-hyperone-volumes/{{timestamp}}" + path, err := interpolate.Render("/mnt/packer-hyperone-volumes/{{timestamp}}", nil) + if err != nil { + return nil, nil, err + } + c.ChrootMountPath = path } if c.ChrootMounts == nil {