vmcx

package
v1.5.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 20, 2019 License: MPL-2.0 Imports: 17 Imported by: 0

Documentation

Overview

Code generated by "mapstructure-to-hcl2 -type Config"; DO NOT EDIT.

Index

Constants

View Source
const (
	DefaultRamSize                 = 1 * 1024    // 1GB
	MinRamSize                     = 32          // 32MB
	MaxRamSize                     = 1024 * 1024 // 1TB
	MinNestedVirtualizationRamSize = 4 * 1024    // 4GB

	LowRam = 256 // 256MB

	DefaultUsername = ""
	DefaultPassword = ""
)

Variables

This section is empty.

Functions

This section is empty.

Types

type Builder

type Builder struct {
	// contains filtered or unexported fields
}

Builder implements packer.Builder and builds the actual Hyperv images.

func (*Builder) ConfigSpec added in v1.5.0

func (b *Builder) ConfigSpec() hcldec.ObjectSpec

func (*Builder) Prepare

func (b *Builder) Prepare(raws ...interface{}) ([]string, []string, error)

func (*Builder) Run

func (b *Builder) Run(ctx context.Context, ui packer.Ui, hook packer.Hook) (packer.Artifact, error)

Run executes a Packer build and returns a packer.Artifact representing a Hyperv appliance.

type Config

type Config struct {
	common.PackerConfig            `mapstructure:",squash"`
	common.HTTPConfig              `mapstructure:",squash"`
	common.ISOConfig               `mapstructure:",squash"`
	bootcommand.BootConfig         `mapstructure:",squash"`
	hypervcommon.OutputConfig      `mapstructure:",squash"`
	hypervcommon.SSHConfig         `mapstructure:",squash"`
	hypervcommon.CommonConfig      `mapstructure:",squash"`
	shutdowncommand.ShutdownConfig `mapstructure:",squash"`

	// This is the path to a directory containing an exported virtual machine.
	CloneFromVMCXPath string `mapstructure:"clone_from_vmcx_path"`
	// This is the name of the virtual machine to clone from.
	CloneFromVMName string `mapstructure:"clone_from_vm_name"`
	// The name of a snapshot in the
	// source machine to use as a starting point for the clone. If the value
	// given is an empty string, the last snapshot present in the source will
	// be chosen as the starting point for the new VM.
	CloneFromSnapshotName string `mapstructure:"clone_from_snapshot_name" required:"false"`
	// If set to true all snapshots
	// present in the source machine will be copied when the machine is
	// cloned. The final result of the build will be an exported virtual
	// machine that contains all the snapshots of the parent.
	CloneAllSnapshots bool `mapstructure:"clone_all_snapshots" required:"false"`
	// If true enables differencing disks. Only
	// the changes will be written to the new disk. This is especially useful if
	// your source is a VHD/VHDX. This defaults to false.
	DifferencingDisk bool `mapstructure:"differencing_disk" required:"false"`
	// When cloning a vm to build from, we run a powershell
	// Compare-VM command, which, depending on your version of Windows, may need
	// the "Copy" flag to be set to true or false. Defaults to "false". Command:
	CompareCopy bool `mapstructure:"copy_in_compare" required:"false"`
	// contains filtered or unexported fields
}

func (*Config) FlatMapstructure added in v1.4.5

func (*Config) FlatMapstructure() interface{ HCL2Spec() map[string]hcldec.Spec }

FlatMapstructure returns a new FlatConfig. FlatConfig is an auto-generated flat version of Config. Where the contents a fields with a `mapstructure:,squash` tag are bubbled up.

type FlatConfig added in v1.4.5

type FlatConfig struct {
	PackerBuildName                *string           `mapstructure:"packer_build_name" cty:"packer_build_name"`
	PackerBuilderType              *string           `mapstructure:"packer_builder_type" cty:"packer_builder_type"`
	PackerDebug                    *bool             `mapstructure:"packer_debug" cty:"packer_debug"`
	PackerForce                    *bool             `mapstructure:"packer_force" cty:"packer_force"`
	PackerOnError                  *string           `mapstructure:"packer_on_error" cty:"packer_on_error"`
	PackerUserVars                 map[string]string `mapstructure:"packer_user_variables" cty:"packer_user_variables"`
	PackerSensitiveVars            []string          `mapstructure:"packer_sensitive_variables" cty:"packer_sensitive_variables"`
	HTTPDir                        *string           `mapstructure:"http_directory" cty:"http_directory"`
	HTTPPortMin                    *int              `mapstructure:"http_port_min" cty:"http_port_min"`
	HTTPPortMax                    *int              `mapstructure:"http_port_max" cty:"http_port_max"`
	ISOChecksum                    *string           `mapstructure:"iso_checksum" required:"true" cty:"iso_checksum"`
	ISOChecksumURL                 *string           `mapstructure:"iso_checksum_url" cty:"iso_checksum_url"`
	ISOChecksumType                *string           `mapstructure:"iso_checksum_type" cty:"iso_checksum_type"`
	RawSingleISOUrl                *string           `mapstructure:"iso_url" required:"true" cty:"iso_url"`
	ISOUrls                        []string          `mapstructure:"iso_urls" cty:"iso_urls"`
	TargetPath                     *string           `mapstructure:"iso_target_path" cty:"iso_target_path"`
	TargetExtension                *string           `mapstructure:"iso_target_extension" cty:"iso_target_extension"`
	BootGroupInterval              *string           `mapstructure:"boot_keygroup_interval" cty:"boot_keygroup_interval"`
	BootWait                       *string           `mapstructure:"boot_wait" cty:"boot_wait"`
	BootCommand                    []string          `mapstructure:"boot_command" cty:"boot_command"`
	OutputDir                      *string           `mapstructure:"output_directory" required:"false" cty:"output_directory"`
	Type                           *string           `mapstructure:"communicator" cty:"communicator"`
	PauseBeforeConnect             *string           `mapstructure:"pause_before_connecting" cty:"pause_before_connecting"`
	SSHHost                        *string           `mapstructure:"ssh_host" cty:"ssh_host"`
	SSHPort                        *int              `mapstructure:"ssh_port" cty:"ssh_port"`
	SSHUsername                    *string           `mapstructure:"ssh_username" cty:"ssh_username"`
	SSHPassword                    *string           `mapstructure:"ssh_password" cty:"ssh_password"`
	SSHKeyPairName                 *string           `mapstructure:"ssh_keypair_name" cty:"ssh_keypair_name"`
	SSHTemporaryKeyPairName        *string           `mapstructure:"temporary_key_pair_name" cty:"temporary_key_pair_name"`
	SSHClearAuthorizedKeys         *bool             `mapstructure:"ssh_clear_authorized_keys" cty:"ssh_clear_authorized_keys"`
	SSHPrivateKeyFile              *string           `mapstructure:"ssh_private_key_file" cty:"ssh_private_key_file"`
	SSHPty                         *bool             `mapstructure:"ssh_pty" cty:"ssh_pty"`
	SSHTimeout                     *string           `mapstructure:"ssh_timeout" cty:"ssh_timeout"`
	SSHAgentAuth                   *bool             `mapstructure:"ssh_agent_auth" cty:"ssh_agent_auth"`
	SSHDisableAgentForwarding      *bool             `mapstructure:"ssh_disable_agent_forwarding" cty:"ssh_disable_agent_forwarding"`
	SSHHandshakeAttempts           *int              `mapstructure:"ssh_handshake_attempts" cty:"ssh_handshake_attempts"`
	SSHBastionHost                 *string           `mapstructure:"ssh_bastion_host" cty:"ssh_bastion_host"`
	SSHBastionPort                 *int              `mapstructure:"ssh_bastion_port" cty:"ssh_bastion_port"`
	SSHBastionAgentAuth            *bool             `mapstructure:"ssh_bastion_agent_auth" cty:"ssh_bastion_agent_auth"`
	SSHBastionUsername             *string           `mapstructure:"ssh_bastion_username" cty:"ssh_bastion_username"`
	SSHBastionPassword             *string           `mapstructure:"ssh_bastion_password" cty:"ssh_bastion_password"`
	SSHBastionPrivateKeyFile       *string           `mapstructure:"ssh_bastion_private_key_file" cty:"ssh_bastion_private_key_file"`
	SSHFileTransferMethod          *string           `mapstructure:"ssh_file_transfer_method" cty:"ssh_file_transfer_method"`
	SSHProxyHost                   *string           `mapstructure:"ssh_proxy_host" cty:"ssh_proxy_host"`
	SSHProxyPort                   *int              `mapstructure:"ssh_proxy_port" cty:"ssh_proxy_port"`
	SSHProxyUsername               *string           `mapstructure:"ssh_proxy_username" cty:"ssh_proxy_username"`
	SSHProxyPassword               *string           `mapstructure:"ssh_proxy_password" cty:"ssh_proxy_password"`
	SSHKeepAliveInterval           *string           `mapstructure:"ssh_keep_alive_interval" cty:"ssh_keep_alive_interval"`
	SSHReadWriteTimeout            *string           `mapstructure:"ssh_read_write_timeout" cty:"ssh_read_write_timeout"`
	SSHRemoteTunnels               []string          `mapstructure:"ssh_remote_tunnels" cty:"ssh_remote_tunnels"`
	SSHLocalTunnels                []string          `mapstructure:"ssh_local_tunnels" cty:"ssh_local_tunnels"`
	SSHPublicKey                   []byte            `mapstructure:"ssh_public_key" cty:"ssh_public_key"`
	SSHPrivateKey                  []byte            `mapstructure:"ssh_private_key" cty:"ssh_private_key"`
	WinRMUser                      *string           `mapstructure:"winrm_username" cty:"winrm_username"`
	WinRMPassword                  *string           `mapstructure:"winrm_password" cty:"winrm_password"`
	WinRMHost                      *string           `mapstructure:"winrm_host" cty:"winrm_host"`
	WinRMPort                      *int              `mapstructure:"winrm_port" cty:"winrm_port"`
	WinRMTimeout                   *string           `mapstructure:"winrm_timeout" cty:"winrm_timeout"`
	WinRMUseSSL                    *bool             `mapstructure:"winrm_use_ssl" cty:"winrm_use_ssl"`
	WinRMInsecure                  *bool             `mapstructure:"winrm_insecure" cty:"winrm_insecure"`
	WinRMUseNTLM                   *bool             `mapstructure:"winrm_use_ntlm" cty:"winrm_use_ntlm"`
	FloppyFiles                    []string          `mapstructure:"floppy_files" cty:"floppy_files"`
	FloppyDirectories              []string          `mapstructure:"floppy_dirs" cty:"floppy_dirs"`
	FloppyLabel                    *string           `mapstructure:"floppy_label" cty:"floppy_label"`
	DiskBlockSize                  *uint             `mapstructure:"disk_block_size" required:"false" cty:"disk_block_size"`
	RamSize                        *uint             `mapstructure:"memory" required:"false" cty:"memory"`
	SecondaryDvdImages             []string          `mapstructure:"secondary_iso_images" required:"false" cty:"secondary_iso_images"`
	AdditionalDiskSize             []uint            `mapstructure:"disk_additional_size" required:"false" cty:"disk_additional_size"`
	GuestAdditionsMode             *string           `mapstructure:"guest_additions_mode" required:"false" cty:"guest_additions_mode"`
	GuestAdditionsPath             *string           `mapstructure:"guest_additions_path" required:"false" cty:"guest_additions_path"`
	VMName                         *string           `mapstructure:"vm_name" required:"false" cty:"vm_name"`
	SwitchName                     *string           `mapstructure:"switch_name" required:"false" cty:"switch_name"`
	SwitchVlanId                   *string           `mapstructure:"switch_vlan_id" required:"false" cty:"switch_vlan_id"`
	MacAddress                     *string           `mapstructure:"mac_address" required:"false" cty:"mac_address"`
	VlanId                         *string           `mapstructure:"vlan_id" required:"false" cty:"vlan_id"`
	Cpu                            *uint             `mapstructure:"cpus" required:"false" cty:"cpus"`
	Generation                     *uint             `mapstructure:"generation" required:"false" cty:"generation"`
	EnableMacSpoofing              *bool             `mapstructure:"enable_mac_spoofing" required:"false" cty:"enable_mac_spoofing"`
	EnableDynamicMemory            *bool             `mapstructure:"enable_dynamic_memory" required:"false" cty:"enable_dynamic_memory"`
	EnableSecureBoot               *bool             `mapstructure:"enable_secure_boot" required:"false" cty:"enable_secure_boot"`
	SecureBootTemplate             *string           `mapstructure:"secure_boot_template" required:"false" cty:"secure_boot_template"`
	EnableVirtualizationExtensions *bool             `mapstructure:"enable_virtualization_extensions" required:"false" cty:"enable_virtualization_extensions"`
	TempPath                       *string           `mapstructure:"temp_path" required:"false" cty:"temp_path"`
	Version                        *string           `mapstructure:"configuration_version" required:"false" cty:"configuration_version"`
	KeepRegistered                 *bool             `mapstructure:"keep_registered" required:"false" cty:"keep_registered"`
	SkipCompaction                 *bool             `mapstructure:"skip_compaction" required:"false" cty:"skip_compaction"`
	SkipExport                     *bool             `mapstructure:"skip_export" required:"false" cty:"skip_export"`
	Headless                       *bool             `mapstructure:"headless" required:"false" cty:"headless"`
	ShutdownCommand                *string           `mapstructure:"shutdown_command" required:"false" cty:"shutdown_command"`
	ShutdownTimeout                *string           `mapstructure:"shutdown_timeout" required:"false" cty:"shutdown_timeout"`
	CloneFromVMCXPath              *string           `mapstructure:"clone_from_vmcx_path" cty:"clone_from_vmcx_path"`
	CloneFromVMName                *string           `mapstructure:"clone_from_vm_name" cty:"clone_from_vm_name"`
	CloneFromSnapshotName          *string           `mapstructure:"clone_from_snapshot_name" required:"false" cty:"clone_from_snapshot_name"`
	CloneAllSnapshots              *bool             `mapstructure:"clone_all_snapshots" required:"false" cty:"clone_all_snapshots"`
	DifferencingDisk               *bool             `mapstructure:"differencing_disk" required:"false" cty:"differencing_disk"`
	CompareCopy                    *bool             `mapstructure:"copy_in_compare" required:"false" cty:"copy_in_compare"`
}

FlatConfig is an auto-generated flat version of Config. Where the contents of a field with a `mapstructure:,squash` tag are bubbled up.

func (*FlatConfig) HCL2Spec added in v1.4.5

func (*FlatConfig) HCL2Spec() map[string]hcldec.Spec

HCL2Spec returns the hcl spec of a Config. This spec is used by HCL to read the fields of Config. The decoded values from this spec will then be applied to a FlatConfig.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL