17 lines
468 B
Go
17 lines
468 B
Go
package common
|
|
|
|
import (
|
|
"github.com/hashicorp/packer/template/interpolate"
|
|
)
|
|
|
|
type VMXConfig struct {
|
|
VMXData map[string]string `mapstructure:"vmx_data"`
|
|
VMXDataPost map[string]string `mapstructure:"vmx_data_post"`
|
|
VMXRemoveEthernet bool `mapstructure:"vmx_remove_ethernet_interfaces"`
|
|
VMXDisplayName string `mapstructure:"display_name"`
|
|
}
|
|
|
|
func (c *VMXConfig) Prepare(ctx *interpolate.Context) []error {
|
|
return nil
|
|
}
|