github.com/daniellockard/packer@v0.7.6-0.20141210173435-5a9390934716/website/source/docs/post-processors/vsphere.html.markdown (about) 1 --- 2 layout: "docs" 3 page_title: "vSphere Post-Processor" 4 description: |- 5 The Packer vSphere post-processor takes an artifact from the VMware builder and uploads it to a vSphere endpoint. 6 --- 7 8 # vSphere Post-Processor 9 10 Type: `vsphere` 11 12 The Packer vSphere post-processor takes an artifact from the VMware builder 13 and uploads it to a vSphere endpoint. 14 15 ## Configuration 16 17 There are many configuration options available for the post-processor. They are 18 segmented below into two categories: required and optional parameters. Within 19 each category, the available configuration keys are alphabetized. 20 21 Required: 22 23 * `cluster` (string) - The cluster to upload the VM to. 24 25 * `datacenter` (string) - The name of the datacenter within vSphere to 26 add the VM to. 27 28 * `host` (string) - The vSphere host that will be contacted to perform 29 the VM upload. 30 31 * `password` (string) - Password to use to authenticate to the vSphere 32 endpoint. 33 34 * `resource_pool` (string) - The resource pool to upload the VM to. This can be 35 " " if you do not have resource pools configured 36 37 * `username` (string) - The username to use to authenticate to the vSphere 38 endpoint. 39 40 * `vm_name` (string) - The name of the VM once it is uploaded. 41 42 Optional: 43 44 * `datastore` (string) - The name of the datastore to store this VM. 45 46 * `disk_mode` (string) - Target disk format. See `ovftool` manual for 47 available options. By default, "thick" will be used. 48 49 * `insecure` (boolean) - Whether or not the connection to vSphere can be done 50 over an insecure connection. By default this is false. 51 52 * `vm_folder` (string) - The folder within the datastore to store the VM. 53 54 * `vm_network` (string) - The name of the VM network this VM will be 55 added to.