forked from swisscom/terraform-dcs-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
53 lines (30 loc) · 900 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
#========================================================================================================
# In this terraform file, we define all needed variables, these are referenced in terraform scripts.
#========================================================================================================
variable "vcd_url" {
description = "vCD Url"
}
variable "vcd_user" {
description = "vCD API username"
}
variable "vcd_pass" {
description = "vCD API password"
}
variable "vcd_org" {
description = "Contract Id / PRO-Number"
}
variable "vcd_vdc" {
description = "Dynamic Data Center"
}
variable "vcd_edgegateway" {
description = "Edge Gateway"
}
variable "vcd_public_ip_lb" {
description = "Public IP Address for load balancer"
}
variable "vcd_catalog" {
description = "Catalog name"
}
variable "vcd_template" {
description = "vApp template name"
}