mirror of
https://github.com/hashicorp/packer.git
synced 2026-02-27 12:02:14 -05:00
18 lines
454 B
Go
18 lines
454 B
Go
package triton
|
|
|
|
import (
|
|
"github.com/hashicorp/packer/common"
|
|
"github.com/hashicorp/packer/helper/communicator"
|
|
"github.com/hashicorp/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
|
|
}
|