Commit c19a5c6b authored by Mitchell Hashimoto's avatar Mitchell Hashimoto

post-processors/vsphere: disk mode

parent b5e551d9
......@@ -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:
......
......@@ -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"`
......
......@@ -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.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment