forked from MichaelCade/VeeamLAB
-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.tf
88 lines (59 loc) · 883 Bytes
/
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
# Variables
variable "vsphere_vcenter" {
}
variable "vsphere_user" {
}
variable "vsphere_password" {
}
variable "vsphere_datacenter" {
}
variable "vsphere_cluster" {
}
variable "vsphere_resource_pool" {
}
variable "vsphere_folder" {
}
variable "vsphere_datastore" {
}
variable "vsphere_network" {
}
variable "windows_template" {
}
variable "ubuntu2004_template" {
}
variable "ubuntu1804_template" {
}
variable "centos_template" {
}
variable "dns1" {
}
variable "dns2" {
}
variable "VBR_name" {
}
variable "VBR_IP" {
}
variable "WinProxy_name" {
}
variable "WinProxy_IP" {
}
variable "LinProxy_name" {
}
variable "LinProxy_IP" {
}
variable "XFSRepo_name" {
}
variable "XFSRepo_IP" {
}
variable "Domain" {
}
variable "Domain_Admin" {
}
variable "Domain_Password" {
}
variable "Gateway" {
}
variable "ubuntu1804_password" {
}
variable "centos_password" {
}