You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: variables.tf
+8-3Lines changed: 8 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -93,7 +93,7 @@ variable "storage_policy_id" {
93
93
94
94
###########################################
95
95
variable"vmname" {
96
-
description="The name of the virtual machine used to deploy the vms. When only one VM is requested, `vmname` is simply the name of the deployed VM."
96
+
description="The name of the virtual machine used to deploy the vms. This name can scale out based on number of instances and vmnameformat - example can be found under exampel folder"
97
97
default="terraformvm"
98
98
}
99
99
@@ -102,6 +102,11 @@ variable "vmnameformat" {
102
102
default="%02d"
103
103
}
104
104
105
+
variable"staticvmname" {
106
+
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"
107
+
default=null
108
+
}
109
+
105
110
variable"vmtemp" {
106
111
description="Name of the template available in the vSphere."
107
112
}
@@ -144,7 +149,7 @@ variable "vmgateway" {
144
149
default=null
145
150
}
146
151
147
-
variable"vmdns" {
152
+
variable"dns_server_list" {
148
153
type=list(string)
149
154
default=null
150
155
}
@@ -244,7 +249,7 @@ variable "hw_clock_utc" {
244
249
default=true
245
250
}
246
251
247
-
variable"vmdomain" {
252
+
variable"domain" {
248
253
description="default VM domain for linux guest customization."
0 commit comments