mirror of
https://github.com/hashicorp/packer.git
synced 2026-02-23 18:04:11 -05:00
20 lines
503 B
Go
20 lines
503 B
Go
//go:generate mapstructure-to-hcl2 -type Config
|
|
|
|
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
|
|
}
|