This repository was archived by the owner on Sep 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathvariables.tf
198 lines (161 loc) · 3.82 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
variable "env_name" {
type = "string"
}
variable "vcenter_user" {
type = "string"
}
variable "vcenter_password" {
type = "string"
}
variable "vcenter_server" {
type = "string"
}
variable "vcenter_dc" {
type = "string"
}
variable "vcenter_cluster" {
type = "string"
}
variable "vcenter_network" {
default = ""
type = "string"
}
variable "vcenter_rp" {
default = ""
type = "string"
}
variable "vcenter_ds" {
type = "string"
}
variable "om_vm" {
default = true
description = "if set to false, terraform won't create an Ops Manager VM"
}
variable "om_ipv4_address" {
default = ""
description = "opsman's IP from the outside. If using NSX-T, OM will see it's own IP as 10.0.1.10"
type = "string"
}
variable "om_DNS" {
default = ""
type = "string"
}
variable "om_admin_password" {
default = "admin"
type = "string"
}
variable "om_ntp_servers" {
default = "time.nist.gov"
type = "string"
}
variable "om_custom_hostname" {
default = ""
type = "string"
}
variable "om_gateway" {
default = ""
type = "string"
}
variable "om_template" {
default = ""
type = "string"
}
variable "om_disks" {
default = ""
type = "string"
}
variable "om_vmdk" {
default = ""
type = "string"
}
variable "subnet_cidr" {
default = ""
type = "string"
}
variable "subnet_reserved_ips" {
default = ""
type = "string"
description = "BOSH will not assign IP addresses in this range. If not specified, the first 10 IPs of subnet_cidr will be marked as reserved, e.g. 10.0.0.0-10.0.0.10"
}
variable "vcenter_vms" {
default = ""
type = "string"
}
variable "vcenter_templates" {
default = ""
type = "string"
}
variable "allow_unverified_ssl" {
default = false
type = "string"
}
variable "haproxy_static_ip" {
default = ""
type = "string"
description = "Passthrough value to allow assigning a static IP to your HAProxy VM in a subsequent PAS deployment"
}
variable "tcp_router_static_ip" {
default = ""
type = "string"
description = "Passthrough value to allow assigning a static IP to your TCP Router VM in a subsequent PAS deployment"
}
variable "sys_domain" {
default = ""
type = "string"
description = "Passthrough value to used to configure the system domain in a subsequent PAS deployment"
}
variable "apps_domain" {
default = ""
type = "string"
description = "Passthrough value to used to configure the apps domain in a subsequent PAS deployment"
}
variable "tcp_domain" {
default = ""
type = "string"
description = "Passthrough value to used to configure the TCP domain in a subsequent PAS deployment"
}
variable "nsxt" {
default = false
description = "Set up NSX-T to Integrate with PAS."
type = "string"
}
variable "nsxt_host" {
default = ""
description = "The nsx-t host."
type = "string"
}
variable "nsxt_username" {
default = "username"
description = "The nsx-t username."
type = "string"
}
variable "nsxt_password" {
default = "password"
description = "The nsx-t password."
type = "string"
}
variable "nsxt_subnet_cidr" {
default = ""
description = "CIDR describing the range of IPs available to our network on the T0 router"
type = "string"
}
variable "nsxt_switching_profile" {
default = ""
description = "The name of the spoof guard switching profile."
type = "string"
}
variable "nsxt_transport_zone" {
default = ""
description = "The name of the overlay transport zone."
type = "string"
}
variable "nsxt_edge_cluster" {
default = ""
description = "The name of the edge cluster."
type = "string"
}
variable "nsxt_t0_router" {
default = ""
description = "The name of the logical tier 0 router."
type = "string"
}