-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
106 lines (88 loc) · 2.3 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
variable "vsphereName" {
description = "Name of the VM as it appears in vSphere"
type = string
default = "thisUbuntu"
}
variable "vsphereTemplateName" {
description = "The Name of the template to clone the VM from"
type = string
}
variable "vsphereDatacenterName" {
description = "The Name of the vSphere Datacenter"
type = string
}
variable "vsphereClusterName" {
description = "the Name of the vSphere Cluster"
type = string
}
variable "vsphereContentLibrary" {
description = "the Name of the vSphere Content Library"
type = string
}
# variable "vsphereHostName" {
# description = "The Name of the vSphere ESX Host"
# type = string
# }
variable "vsphereResourceName" {
description = "the Name of the vSphere Resource Pool"
type = string
default = null
}
variable "vsphereDatastoreName" {
description = "the Name of the vSphere Datastore"
type = string
}
variable "vsphereNetworkName" {
description = "the Name of the vSphere Network"
type = string
}
variable "vsphereFolderName" {
description = "The Folder name to store the VM in"
type = string
default = null
}
variable "vmHostName" {
description = "Name of the VM as it appears in the VM."
type = string
default = null
}
variable "vmHostDomain" {
description = "Name of the Host's Domain as it appears in the VM."
type = string
default = null
}
variable "vmCPUs" {
description = "The number of Virtual CPUs for the VM"
type = number
default = 1
}
variable "vmRAM" {
description = "The amout of RAM expresed in megabytes for the VM"
type = number
default = 1024
}
variable "vmIPv4Address" {
description = "Assign a Static IPv4 Address here"
type = string
default = null
}
variable "vmMacAddress" {
description = "Assign a Static Mac Address here"
type = string
default = null
}
variable "vmRole" {
description = "Tag value for Custom Attribute Role"
type = string
default = null
}
variable "vmDiskSize" {
description = "The amout of Disk expresed in gigabytes for the VM"
type = number
default = 0
}
variable "vmAdditionalDisks" {
description = "A map of additional Disk Drives"
type = any
default = {}
}