github Terraform-VMWare-Modules/terraform-vsphere-vm v1.4.0
Stable v1.4.0

latest releases: v3.8.0, v3.7.0, v3.7...
3 years ago

ChangeLog

  • Add cpu, mem reservations
  • scsi bus sharing parameter
  • Ability to define depend on separately for tag using variable tag_depends_on

New Variables:

variable "tag_ids" {
  description = "The ids of any tags to attach to this resource. They must already exist."
  type        = list
  default     = null
}
variable "tag_depends_on" {
  description = "Add any external depend on module here like tag_depends_on = [vsphere_tag.foo.id]"
  type        = any
  default     = null
}
variable "scsi_bus_sharing" {
  description = "scsi_bus_sharing mode, acceptable values physicalSharing,virtualSharing,noSharing"
  type        = string
  default     = null
}
variable "memory_reservation" {
  description = "The amount of memory (in MB) that this virtual machine is guaranteed."
  default     = null
}
variable "cpu_reservation" {
  description = "The amount of CPU (in MHz) that this virtual machine is guaranteed."
  default     = null
}

Don't miss a new terraform-vsphere-vm release

NewReleases is sending notifications on new releases.