19 lines
454 B
Go
19 lines
454 B
Go
|
package triton
|
||
|
|
||
|
import (
|
||
|
"github.com/mitchellh/packer/common"
|
||
|
"github.com/mitchellh/packer/helper/communicator"
|
||
|
"github.com/mitchellh/packer/template/interpolate"
|
||
|
)
|
||
|
|
||
|
type Config struct {
|
||
|
common.PackerConfig `mapstructure:",squash"`
|
||
|
AccessConfig `mapstructure:",squash"`
|
||
|
SourceMachineConfig `mapstructure:",squash"`
|
||
|
TargetImageConfig `mapstructure:",squash"`
|
||
|
|
||
|
Comm communicator.Config `mapstructure:",squash"`
|
||
|
|
||
|
ctx interpolate.Context
|
||
|
}
|