-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathvariables.tf
More file actions
38 lines (32 loc) · 767 Bytes
/
Copy pathvariables.tf
File metadata and controls
38 lines (32 loc) · 767 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// The vsphere ip address
variable "vsphere_server" {
description = "VMware vSphere IP address"
type = string
}
// The vsphere user
variable "vsphere_username" {
description = "VMware vSphere User Password"
type = string
}
// The vsphere password
variable "vsphere_password" {
description = "VMware vSphere User Password"
type = string
}
variable "common_vm_specs" {
type = map(any)
description = "Common VM specification and/or configuration"
}
variable "vms" {
type = map(object({
quantity = number
vCPU = number
vMEM = number
diskSize = number
vmname = string
datastore = string
network = string
hostname = string
domain_name = string
}))
}