-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathvariables.tf
44 lines (36 loc) · 930 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
variable "sddc_manager_username" {
description = "username used to authenticate against an SDDC Manager instance"
default = ""
}
variable "sddc_manager_password" {
description = "Password used to authenticate against an SDDC Manager instance"
default = ""
}
variable "sddc_manager_host" {
description = "FQDN of an SDDC Manager instance"
default = ""
}
variable "esxi_1_user" {
description = "SSH user of ESXi1 server"
default = ""
}
variable "esxi_1_pass" {
description = "SSH password of ESXi1 server"
default = ""
}
variable "esxi_2_user" {
description = "SSH user of ESXi2 server"
default = ""
}
variable "esxi_2_pass" {
description = "SSH password of ESXi2 server"
default = ""
}
variable "esxi_3_user" {
description = "SSH user of ESXi3 server"
default = ""
}
variable "esxi_3_pass" {
description = "SSH password of ESXi3 server"
default = ""
}