-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
232 lines (198 loc) · 4.61 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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
/*****
Common Variables: Azure provider - Autoloaded from Terragrunt.
*****/
variable "region" {
description = "The Azure region (e.g. 'australiaeast'). Autoloaded from region.tfvars."
type = string
default = ""
}
/*****
VNET Module Variables - https://github.com/mashbynz/tf-mod-azure-vnet
*****/
variable "rg_name" {
type = string
description = ""
default = ""
}
variable "rg_location" {
type = string
description = ""
default = ""
}
variable "vnet_addressspace" {
type = list(string)
description = ""
default = []
}
variable "vnet_ddos_name" {
type = string
description = ""
default = ""
}
variable "gateway_nsg_name" {
type = string
description = ""
default = ""
}
variable "gateway_subnet_name" {
type = string
description = ""
default = ""
}
variable "gateway_subnet_prefix" {
type = string
description = ""
default = ""
}
variable "firewall_subnet_name" {
type = string
description = ""
default = ""
}
variable "firewall_subnet_prefix" {
type = string
description = ""
default = ""
}
variable "gateway_rt_name" {
type = string
description = ""
default = ""
}
variable "gateway_rt_prefix" {
type = string
description = ""
default = ""
}
variable "gateway_rt_nexthop_type" {
type = string
description = ""
default = ""
}
variable "gateway_rt_nexthop_ip" {
type = string
description = ""
default = ""
}
variable "firewall_allocation_method" {
type = string
description = ""
default = ""
}
variable "firewall_sku" {
type = string
description = ""
default = ""
}
variable "vpngw_allocation_method" {
type = string
description = ""
default = ""
}
variable "vpngw_type" {
type = string
description = ""
default = ""
}
variable "vpngw_vpn_type" {
type = string
description = ""
default = ""
}
variable "vpngw_sku" {
type = string
description = ""
default = ""
}
variable "vpngw_ip_sku" {
type = string
description = ""
default = ""
}
variable "vpngw_private_alloc" {
type = string
description = ""
default = ""
}
variable "vpngw_client_address" {
type = list(string)
description = ""
default = []
}
variable "vpn_client_protocols" {
type = list(string)
description = ""
default = []
}
/*****
Label Module Variables
*****/
variable "namespace" {
type = string
default = ""
description = "Namespace, which could be your organization name or abbreviation, e.g. 'eg' or 'cp'"
}
variable "environment" {
type = string
default = ""
description = "Environment, e.g. 'prod', 'staging', 'dev', 'pre-prod', 'UAT'"
}
variable "sharedservices_name" {
type = string
default = ""
description = "Solution name, e.g. 'app' or 'jenkins'"
}
variable "class" {
type = string
default = ""
description = "the type of resource e.g. 'sharedservices' or 'app1'"
}
variable "delimiter" {
type = string
default = ""
description = "Delimiter to be used between `namespace`, `environment`, `stage`, `name` and `attributes`"
}
variable "attributes" {
type = list(string)
default = []
description = "Additional attributes (e.g. `1`)"
}
variable "tags" {
type = map(string)
default = {}
description = "Additional tags (e.g. `map('BusinessUnit','XYZ')`"
}
variable "regex_replace_chars" {
type = string
default = "/[^a-zA-Z0-9-]/"
description = "Regex to replace chars with empty string in `namespace`, `environment`, `stage` and `name`. By default only hyphens, letters and digits are allowed, all other chars are removed"
}
variable "context" {
type = object({
namespace = string
environment = string
stage = string
name = string
enabled = bool
delimiter = string
attributes = list(string)
label_order = list(string)
tags = map(string)
additional_tag_map = map(string)
regex_replace_chars = string
})
default = {
namespace = ""
environment = ""
stage = ""
name = ""
enabled = true
delimiter = ""
attributes = []
label_order = []
tags = {}
additional_tag_map = {}
regex_replace_chars = ""
}
description = "Default context to use for passing state between label invocations"
}