-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
94 lines (76 loc) · 1.95 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
variable "vsphere_user" {
type = string
description = "The user that access the vsphere API."
}
variable "vsphere_password" {
type = string
description = "The user's password for accessing the vsphere API."
}
variable "vsphere_server" {
type = string
description = "The server that serves the vsphere API."
}
variable "vsphere_datacenter" {
type = string
description = "The name of the datacenter"
}
variable "vsphere_datastore" {
type = string
description = "The name of the datastore"
}
variable "vsphere_compute_cluster" {
type = string
description = "The name of the vsphere cluster"
}
variable "vsphere_network" {
type = string
description = "The network port group for the new VM"
}
variable "vsphere_vm_template" {
type = string
description = "The template to clone the VM from"
}
variable "vsphere_vm_name" {
type = string
description = "The name of the new VM"
}
variable "vm_num_cpus" {
type = number
description = "The number of CPUs for the new VM"
}
variable "vm_memory" {
type = number
description = "The amount on RAM memory in MB for the new VM"
}
variable "vm_host_name" {
type = string
description = "The hostname of the new VM"
}
variable "vm_domain_name" {
type = string
description = "The domain name of the new VM"
}
variable "vm_ipv4_address" {
type = string
description = "The IPv4 address of the new VM"
}
variable "vm_ipv4_netmask" {
type = string
description = "The netmask for the new VM"
}
variable "vm_ipv4_gateway" {
type = string
description = "The gateway for the new VM"
}
variable "vm_dns_servers" {
type = list
description = "DNS servers"
}
variable "vm_dns_search_domain" {
type = string
description = "DNS search domain."
}
variable "res_pool_name" {
type = string
description = "The name of the new resource pool to be created."
}