Skip to content

Stable v3.0.0

Compare
Choose a tag to compare
@Arman-Keyoumarsi Arman-Keyoumarsi released this 23 Apr 17:58
· 50 commits to master since this release
c4f25cd

ChangeLog

  • Merged Windows and Linux customization under one resource
  • Added VM format option and static VM deployment
  • Added multiple examples
  • renamed some of the variable names to reduce confusion

New Variables

variable "staticvmname" {
  description = "Static name of the virtual machin. When this option is used VM can not scale out using instance variable. You can use for_each outside the module to deploy multiple static vms with different names"
  default     = null
}
variable "vmnameformat" {
  description = "vmname format. default is set to 2 decimal with leading 0. example: %03d for 3 decimal with leading zero or %02dprod for additional suffix"
  default     = "%02d"
}
variable "dns_server_list" {
  type    = list(string)
  default = null
}
variable "domain" {
  description = "default VM domain for linux guest customization."
  default     = "Development.com"
}

Contributors
@sestegra
@Arman-Keyoumarsi