-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
50 lines (42 loc) · 1.01 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
variable "esxi_account" {
description = "Account used to access ESXi"
type = string
default = "root"
}
variable "LAB_PW" {
description = "ESXi root PW from env TF_LAB_PW"
type = string
}
variable "LAB_DOMAIN" {
description = "Domain of the lab from env TF_LAB_DOMAIN"
type = string
}
variable "LAB_DNS1" {
description = "First DNS server of the lab from env TF_LAB_DNS1"
type = string
}
variable "LAB_DNS2" {
description = "Second DNS server of the lab from env TF_LAB_DNS2"
type = string
}
variable "LAB_REPO" {
description = "Domain of the lab from env TF_LAB_REPO"
type = string
}
variable "LAB_SUBNET" {
description = "Subnet of the lab from env TF_LAB_SUBNET"
type = string
}
variable "LAB_USER" {
description = "Non root user of the lab from env TF_LAB_USER"
type = string
}
variable "vms" {
description = "List of VMs to be managed"
type = list(string)
default = [
"lvm05",
"lvm06",
"lvm07",
]
}