fix docker-import postprocessor.
This commit is contained in:
parent
94a32dc282
commit
713e7a2683
|
@ -39,6 +39,8 @@ func (p *HCL2PostProcessor) 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)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue