Skip to content

Commit 1482971

Browse files
committed
add adapter_type description
1 parent 20cf151 commit 1482971

1 file changed

Lines changed: 9 additions & 7 deletions

File tree

website/source/docs/providers/vsphere/r/virtual_disk.html.markdown

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,12 @@ Provides a VMware virtual disk resource. This can be used to create and delete
1414

1515
```
1616
resource "vsphere_virtual_disk" "myDisk" {
17-
size = 2
18-
vmdk_path = "myDisk.vmdk"
19-
datacenter = "Datacenter"
20-
datastore = "local"
21-
type = "thin"
17+
size = 2
18+
vmdk_path = "myDisk.vmdk"
19+
datacenter = "Datacenter"
20+
datastore = "local"
21+
type = "thin"
22+
adapter_type = "lsiLogic"
2223
}
2324
```
2425

@@ -28,6 +29,7 @@ The following arguments are supported:
2829

2930
* `size` - (Required) Size of the disk (in GB).
3031
* `vmdk_path` - (Required) The path, including filename, of the virtual disk to be created. This should end with '.vmdk'.
31-
* `type` - (Optional) 'eagerZeroedThick' (the default), or 'thin' are supported options.
32+
* `type` - (Optional) 'eagerZeroedThick' (the default), 'lazy', or 'thin' are supported options.
33+
* `adapter_type` - (Optional) set adapter type, 'ide' (the default), 'lsiLogic', or 'busLogic' are supported options.
3234
* `datacenter` - (Optional) The name of a Datacenter in which to create the disk.
33-
* `datastore` - (Required) The name of the Datastore in which to create the disk.
35+
* `datastore` - (Required) The name of the Datastore in which to create the disk.

0 commit comments

Comments
 (0)