This repository has been archived by the owner on Oct 25, 2022. It is now read-only.
generated from ministryofjustice/template-repository
-
Notifications
You must be signed in to change notification settings - Fork 2
/
variables.tf
212 lines (163 loc) · 3.11 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
variable "aws_region" {
description = "The AWS region to create things in"
default = "eu-west-2"
}
variable "owner-email" {
type = string
default = "[email protected]"
}
variable "is-production" {
type = string
default = "true"
}
variable "production_account_id" {
type = string
}
variable "assume_role" {
type = string
}
variable "grafana_url" {
type = string
}
variable "grafana_admin_username" {
type = string
}
variable "grafana_admin_password" {
type = string
}
variable "grafana_db_name" {
type = string
}
variable "grafana_db_endpoint" {
type = string
}
variable "grafana_db_endpoint_v2" {
type = string
}
variable "grafana_db_username" {
type = string
}
variable "grafana_db_password" {
type = string
}
variable "domain_prefix" {
type = string
}
variable "vpn_hosted_zone_domain" {
type = string
}
variable "vpn_hosted_zone_id" {
type = string
}
variable "thanos_image_repository_url" {
type = string
}
#################### Azure AD ####################
variable "azure_ad_client_id" {
type = string
}
variable "azure_ad_client_secret" {
type = string
}
variable "azure_ad_auth_url" {
type = string
}
variable "azure_ad_token_url" {
type = string
}
#################### Transit Gateway ####################
variable "enable_transit_gateway" {
type = bool
default = false
}
variable "transit_gateway_id" {
type = string
}
variable "transit_gateway_route_table_id" {
type = string
}
#################### SMTP details ####################
variable "smtp_user" {
type = string
}
variable "smtp_password" {
type = string
}
variable "sns_subscribers" {
type = string
}
variable "enable_test_bastion" {
type = bool
default = false
}
variable "bastion_allowed_ingress_ip" {
type = string
default = "0.0.0.0/0"
}
variable "cloudwatch_exporter_access_role_arns" {
description = "Cloudwatch exporter role arns for access to metric data"
type = string
default = ""
}
#################### Route53 details ####################
variable "enable_ima_dns_resolver" {
type = bool
default = false
}
variable "gsi_domain" {
type = string
}
variable "mojo_dns_ip_1" {
type = string
}
variable "mojo_dns_ip_2" {
type = string
}
variable "psn_team_protected_range_1" {
type = string
}
variable "psn_team_protected_range_2" {
type = string
}
variable "sop_oci_range" {
type = string
}
variable "farnborough_5260_ip" {
type = string
}
variable "corsham_5260_ip" {
type = string
}
variable "corsham_mgmt_range" {
type = string
}
variable "farnborough_mgmt_range" {
type = string
}
######################## Quantum and DOM1 DNS #############################
variable "dom1_dns_range_1" {
type = string
}
variable "dom1_dns_range_2" {
type = string
}
variable "quantum_dns_range_1" {
type = string
}
variable "quantum_dns_range_2" {
type = string
}
variable "quantum_dns_ip_1" {
type = string
}
variable "quantum_dns_ip_2" {
type = string
}
variable "byoip_pool_id" {
type = string
}
############# EKS Cluster feature flag #############219
variable "is_eks_enabled" {
type = bool
default = false
}