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