Skip to content

Releases: Terraform-VMWare-Modules/terraform-vsphere-vm

Stable v1.2.0

20 May 15:50
aa5336a
Compare
Choose a tag to compare

ChangeLog

Ability to define network type per interface and disk label per attached disk..

New Variables

network_type              = ["vmxnet3", "vmxnet3"]
disk_label                = ["tpl-disk-1"]
data_disk_label           = ["label1", "label2"]

Contributors:

Stable v1.1.0

14 May 15:52
6d3f7e9
Compare
Choose a tag to compare

ChangeLog

  • Ability to define different scsi_controllers per disk, including data disks.
  • Ability to change scsi_type

New Variables

  • scsi_type = "lsilogic" // Other acceptable value "pvscsi"
  • scsi_controller = 0 // This will assign OS disk to controller 0
  • data_disk_scsi_controller = [0, 1] // This will create a new controller and assign second data disk to controller 1

Contributors:

Ability to define different datastores for data disks

13 May 19:01
e748ac5
Compare
Choose a tag to compare
  • Ability to define different datastores for data disks
  • This include two new variables

disk_datastore = "vsanDatastore" // This will store Template disk in the defined disk_datastore
data_disk_datastore = ["vsanDatastore", "nfsDatastore"] // Datastores for additional data disks

Contributed by @SamyCoenen