Merge pull request #9585 from hashicorp/azr-fix-uint64-buildvars

post-processor/provisioner: handle uint64 buildvars
This commit is contained in:
Megan Marsh 2020-07-15 10:06:57 -07:00 committed by GitHub
commit b2f8ba9991
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 0 deletions

View File

@ -37,6 +37,8 @@ func (p *HCL2PostProcessor) HCL2Prepare(buildVars map[string]interface{}) error
buildValues[k] = cty.StringVal(v)
case int64:
buildValues[k] = cty.NumberIntVal(v)
case uint64:
buildValues[k] = cty.NumberUIntVal(v)
default:
return fmt.Errorf("unhandled buildvar type: %T", v)
}

View File

@ -3,6 +3,7 @@ package hcl2template
import (
"context"
"fmt"
"github.com/hashicorp/hcl/v2"
"github.com/hashicorp/hcl/v2/hcldec"
"github.com/hashicorp/packer/packer"
@ -36,6 +37,8 @@ func (p *HCL2Provisioner) HCL2Prepare(buildVars map[string]interface{}) error {
buildValues[k] = cty.StringVal(v)
case int64:
buildValues[k] = cty.NumberIntVal(v)
case uint64:
buildValues[k] = cty.NumberUIntVal(v)
default:
return fmt.Errorf("unhandled buildvar type: %T", v)
}