Files
Packer-Cn/website/pages/partials/builder/vsphere/iso/DiskConfig.mdx
T
Joshua Foster 7f0dbdebb2 clean up documentation for new NIC and storage params
adding examples, updating .gitattributes so *.mdx files have LF endings for windows
2020-04-13 14:28:50 -04:00

17 lines
410 B
Plaintext

<!-- Code generated from the comments of the DiskConfig struct in builder/vsphere/iso/step_create.go; DO NOT EDIT MANUALLY -->
Defines the disk storage for a VM.
Example that will create a 15GB and a 20GB disk on the VM. The second disk will be thin provisioned:
```json
"storage": [
{
"disk_size": 15000,
},
{
"disk_size": 20000,
"disk_thin_provisioned": true
}
],
```