20 lines
442 B
Go
Raw Permalink Normal View History

2020-09-02 10:19:57 +02:00
package common
import (
"bytes"
"strings"
2020-11-17 16:31:03 -08:00
"github.com/hashicorp/packer/packer-plugin-sdk/multistep"
packersdk "github.com/hashicorp/packer/packer-plugin-sdk/packer"
2020-09-02 10:19:57 +02:00
)
func basicStateBag(errorBuffer *strings.Builder) *multistep.BasicStateBag {
state := new(multistep.BasicStateBag)
state.Put("ui", &packersdk.BasicUi{
2020-09-02 10:19:57 +02:00
Reader: new(bytes.Buffer),
Writer: new(bytes.Buffer),
ErrorWriter: errorBuffer,
})
return state
}