github.com/rothwerx/packer@v0.9.0/builder/vmware/common/vmx_config.go (about)

     1  package common
     2  
     3  import (
     4  	"github.com/mitchellh/packer/template/interpolate"
     5  )
     6  
     7  type VMXConfig struct {
     8  	VMXData     map[string]string `mapstructure:"vmx_data"`
     9  	VMXDataPost map[string]string `mapstructure:"vmx_data_post"`
    10  }
    11  
    12  func (c *VMXConfig) Prepare(ctx *interpolate.Context) []error {
    13  	return nil
    14  }