fix cty bool passing for provisioners, too

This commit is contained in:
Megan Marsh 2020-07-30 11:25:44 -07:00
parent 40b1adc97a
commit 2bd2954412
1 changed files with 2 additions and 0 deletions

View File

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