post-processors/vsphere: disk mode

This commit is contained in:
Mitchell Hashimoto 2014-04-21 21:10:20 -07:00
parent b5e551d930
commit c19a5c6bb7
3 changed files with 6 additions and 2 deletions

View File

@ -22,7 +22,8 @@ IMPROVEMENTS:
* builder/vmware: add cloning support on Windows [GH-824]
* command/build: Added '-parallel' flag so you can disable parallelization
with `-no-parallel`. [GH-924]
* provisioner/ansible: Add inventory_file option [GH-1006]
* post-processors/vsphere: `disk_mode` option. [GH-778]
* provisioner/ansible: Add `inventory_file` option [GH-1006]
BUG FIXES:

View File

@ -20,7 +20,7 @@ type Config struct {
Cluster string `mapstructure:"cluster"`
Datacenter string `mapstructure:"datacenter"`
Datastore string `mapstructure:"datastore"`
DiskMode string `mapstructure:"diskmode"`
DiskMode string `mapstructure:"disk_mode"`
Host string `mapstructure:"host"`
Password string `mapstructure:"password"`
ResourcePool string `mapstructure:"resource_pool"`

View File

@ -45,5 +45,8 @@ Required:
Optional:
* `disk_mode` (string) - Target disk format. See `ovftool` manual for
available options. By default, "thick" will be used.
* `insecure` (bool) - Whether or not the connection to vSphere can be done
over an insecure connection. By default this is false.