-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
161 lines (161 loc) · 5.72 KB
/
variables.tf
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
variable "name" {
type = string
description = "The name of the VM to create. EX: TestArtifactory"
}
variable "folder" {
type = string
description = "The folder in vSphere to create the VM under. EX: PTA/Prod"
}
variable "vm_clone_from" {
type = string
description = "The folder path and name of the VM to clone from. EX: PTA/Test/template-pta-centos-7"
}
variable "vsphere_datacenter" {
type = string
description = "The name of the datacenter to connect to."
}
variable "vsphere_datastore" {
type = string
description = "The name of the datastore to use for the new virtual machine."
}
variable "vsphere_compute_cluster" {
type = string
description = "The name of the compute cluster to use for the new virtual machine."
/*
This term is a bit confusing, but generally refers to the Datacenter's cluster you wish to use.
Not to be confused with datastore clusters.
Read up on in the Terraform docs. https://www.terraform.io/docs/providers/vsphere/r/compute_cluster.html
*/
}
variable "num_cpus" {
type = number
default = 1
description = "The total number of virtual processor cores to assign to this virtual machine."
}
variable "memory" {
type = number
default = 4096
description = "The size of the virtual machine's memory, in MB."
}
variable "time_zone" {
type = number
default = null
description = "The timezone to set in the OS. EX: 15"
}
variable "vlan_main" {
type = string
description = "The name of the vSphere network to attach as a Network Adapter to the VM."
}
variable "dns_server_list" {
type = list(string)
default = null
description = "The list of DNS servers to configure on the virtual machine. EX: [\"192.168.0.10\",\"192.168.0.11\"]"
}
variable "ipv4_address" {
type = string
default = null
description = "The IPv4 address assigned to this network adapter. If left blank or not included, DHCP is used."
}
variable "ipv4_netmask" {
type = number
default = null
description = "The IPv4 subnet mask, in bits (example: 24 for 255.255.255.0)."
}
variable "ipv4_gateway" {
type = string
description = "The IPv4 Gateway to communicate with to get the DHCP address for the VM's network."
}
variable "ipv6_address" {
type = string
default = null
description = "The IPv6 address assigned to this network adapter. If left blank or not included, auto-configuration is used."
}
variable "ipv6_netmask" {
type = number
default = null
description = "The IPv6 subnet mask, in bits (example: 32)."
}
variable "ipv6_gateway" {
type = string
default = null
description = "The IPv6 Gateway to communicate with to get the DHCP address for the VM's network."
}
variable "product_key" {
type = string
default = null
description = "The product key for this virtual machine."
}
variable "full_name" {
type = string
default = null
description = "The full name of the user of this virtual machine. This populates the 'user' field in the general Windows system information. Default: Administrator."
// If you use this variable to something other than the default, ensure you set the full_name variable as well.
// https://github.com/terraform-providers/terraform-provider-vsphere/issues/118
}
variable "admin_password" {
type = string
default = null
description = "The administrator password for this virtual machine."
}
variable "dns_domain" {
type = string
default = null
description = "Network interface-specific DNS search domain for Windows operating systems."
}
variable "workgroup" {
type = string
default = null
description = "The workgroup name for this virtual machine. One of this or join_domain must be included. If used, this is generally set to 'WORKGROUP'."
}
variable "join_domain" {
type = string
default = null
description = "The domain to join for this virtual machine. One of this or workgroup must be included."
}
variable "domain_admin_user" {
type = string
default = null
description = "The user of the domain administrator used to join this virtual machine to the domain. Required if you are setting join_domain."
}
variable "domain_admin_password" {
type = string
default = null
description = "The password of the domain administrator used to join this virtual machine to the domain. Required if you are setting join_domain."
}
variable "auto_logon" {
type = bool
default = true
description = "Specifies whether or not the VM automatically logs on as Administrator."
}
variable "run_once_command_list" {
type = list(string)
default = ["net user Administrator /active:yes", "rundll32.exe user32.dll, LockWorkStation"]
description = "A list of commands to run at first user logon, after guest customization. Each command is limited by the API to 260 characters."
// Be sure you use this variable with the right value if you change the full_name variable.
// https://github.com/terraform-providers/terraform-provider-vsphere/issues/118
}
variable "nested_hv_enabled" {
type = bool
default = null
description = "This is required if you need to run Packer on the VM to produce other virtual machines directly on the VM."
}
variable "clone_timeout" {
type = number
default = null
description = " The amount of time, in minutes, to wait for an available IP address on this virtual machine's NICs."
}
variable "customize_timeout" {
type = number
default = null
description = "The time, in minutes that Terraform waits for customization to complete before failing."
}
variable "wait_for_guest_net_timeout" {
type = number
default = null
description = "The amount of time, in minutes, to wait for an available IP address on this virtual machine's NICs."
}
variable "shutdown_wait_timeout" {
type = number
default = null
description = "The amount of time, in minutes, to wait for a graceful guest shutdown when making necessary updates to the virtual machine."
}