Skip to content

Commit 69cc089

Browse files
committed
Expose additional disk properties
1 parent bd01788 commit 69cc089

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

main.tf

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -207,6 +207,9 @@ resource "vsphere_virtual_machine" "vm" {
207207
io_share_level = lookup(terraform_disks.value, "io_share_level", "normal")
208208
io_share_count = lookup(terraform_disks.value, "io_share_level", null) == "custom" ? lookup(terraform_disks.value, "io_share_count") : null
209209
disk_mode = lookup(terraform_disks.value, "disk_mode", null)
210+
disk_sharing = lookup(terraform_disks.value, "disk_sharing", null)
211+
attach = lookup(terraform_disks.value, "attach", null)
212+
path = lookup(terraform_disks.value, "path", null)
210213
}
211214
}
212215
clone {

0 commit comments

Comments
 (0)