2020-11-04 18:44:05 -05:00
|
|
|
package packerbuilderdata
|
2020-01-20 10:29:38 -05:00
|
|
|
|
|
|
|
import "github.com/hashicorp/packer/helper/multistep"
|
|
|
|
|
2020-11-04 18:44:05 -05:00
|
|
|
// This is used in the BasicPlaceholderData() func in the packer/provisioner.go
|
|
|
|
// To force users to access generated data via the "generated" func.
|
|
|
|
const PlaceholderMsg = "To set this dynamically in the Packer template, " +
|
|
|
|
"you must use the `build` function"
|
|
|
|
|
2020-01-20 10:29:38 -05:00
|
|
|
// GeneratedData manages variables exported by a builder after
|
|
|
|
// it started. It uses the builder's multistep.StateBag internally, make sure it
|
|
|
|
// is not nil before calling any functions.
|
|
|
|
type GeneratedData struct {
|
|
|
|
// The builder's StateBag
|
|
|
|
State multistep.StateBag
|
|
|
|
}
|
|
|
|
|
|
|
|
func (gd *GeneratedData) Put(key string, data interface{}) {
|
|
|
|
genData := make(map[string]interface{})
|
|
|
|
if _, ok := gd.State.GetOk("generated_data"); ok {
|
|
|
|
genData = gd.State.Get("generated_data").(map[string]interface{})
|
|
|
|
}
|
|
|
|
genData[key] = data
|
|
|
|
gd.State.Put("generated_data", genData)
|
|
|
|
}
|