Stable v1.4.0
Arman-Keyoumarsi
released this
20 Jul 17:02
·
111 commits
to master
since this release
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
}