-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
296 lines (257 loc) · 6.8 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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
#----------------------------------------------------------------
# Required variables
#----------------------------------------------------------------
variable "environment" {
description = "The environment name"
type = string
}
variable "prefix" {
description = "The prefix"
type = string
}
variable "region" {
description = "AWS Region where the resources will be created"
}
variable "vpc_id" {
description = "VPC ID"
}
variable "client_id" {
description = "EDW access Client ID, available on the ElasticDW UI > Settings"
}
variable "edw_principal_account_number" {
description = "The ElasticDW principal account number, available on the ElasticDW UI > Settings"
}
variable "sns_topic_arn" {
description = "SNS for EDW"
default = "*"
}
variable "remote_logger" {
description = "EDWs remote logger"
default = "*"
}
variable "account_configuration" {
description = "configuration for fully managed accounts"
default = "semi_managed"
}
variable "configuration_maps" {
description = "Eable creation of backup bucket"
type = map(map(string))
default = {
"fully_managed" = {
"eon_bucket" = false,
"backup_bucket" = false,
"kms_key" = false,
"access_role" = true,
"instance_role" = false,
"security_group" = false,
"force_destroy" = false,
}
"semi_managed" = {
"eon_bucket" = true,
"backup_bucket" = true,
"kms_key" = true,
"access_role" = true,
"instance_role" = true,
"security_group" = true,
"force_destroy" = false,
}
}
}
###SG
variable "alb_ingress_rules" {
description = "List of ingress rules to create by name"
type = list(string)
default = []
}
variable "alb_ingress_with_self" {
description = "List of ingress rules to create where 'self' is defined"
type = list(map(string))
default = []
}
variable "alb_ingress_with_cidr_blocks" {
description = "List of ingress rules to create where 'cidr_blocks' is used"
type = list(map(string))
default = []
}
variable "alb_ingress_cidr_blocks" {
description = "List of IPv4 CIDR ranges to use on all ingress rules"
type = list(string)
default = []
}
variable "alb_egress_rules" {
description = "List of egress rules to create by name"
type = list(string)
default = []
}
variable "alb_egress_with_self" {
description = "List of egress rules to create where 'self' is defined"
type = list(map(string))
default = []
}
variable "alb_egress_with_cidr_blocks" {
description = "List of egress rules to create where 'cidr_blocks' is used"
type = list(map(string))
default = []
}
variable "alb_egress_cidr_blocks" {
description = "List of IPv4 CIDR ranges to use on all egress rules"
type = list(string)
default = ["0.0.0.0/0"]
}
# SG ASG
variable "asg_ingress_rules" {
description = "List of ingress rules to create by name"
type = list(string)
default = []
}
variable "asg_ingress_with_self" {
description = "List of ingress rules to create where 'self' is defined"
type = list(map(string))
default = []
}
variable "asg_ingress_cidr_blocks" {
description = "List of IPv4 CIDR ranges to use on all ingress rules"
type = list(string)
default = []
}
variable "asg_egress_rules" {
description = "List of egress rules to create by name"
type = list(string)
default = ["all-all"]
}
variable "asg_egress_with_self" {
description = "List of egress rules to create where 'self' is defined"
type = list(map(string))
default = []
}
variable "asg_egress_with_cidr_blocks" {
description = "List of egress rules to create where 'cidr_blocks' is used"
type = list(map(string))
default = []
}
variable "asg_egress_cidr_blocks" {
description = "List of IPv4 CIDR ranges to use on all egress rules"
type = list(string)
default = ["0.0.0.0/0"]
}
variable "asg_ingress_with_cidr_blocks" {
description = "Default security group rules for Vertica"
type = list(map(any))
default = [
{
from_port = 4803
to_port = 4803
protocol = "tcp"
description = "spread ports"
cidr_blocks = "0.0.0.0/0"
},
{
from_port = 53
to_port = 53
protocol = "tcp"
description = "dns"
cidr_blocks = "0.0.0.0/0"
},
{
from_port = 5433
to_port = 5434
protocol = "tcp"
description = "vsql/sql"
cidr_blocks = "0.0.0.0/0"
},
{
from_port = 14159
to_port = 14161
protocol = "tcp"
description = "inter node comms"
cidr_blocks = "0.0.0.0/0"
},
{
from_port = 5444
to_port = 5444
protocol = "tcp"
description = "Vertica Management Console"
cidr_blocks = "0.0.0.0/0"
},
{
from_port = 5450
to_port = 5450
protocol = "tcp"
description = "Vertica Management Console"
cidr_blocks = "0.0.0.0/0"
},
{
from_port = 6543
to_port = 6543
protocol = "tcp"
description = "Spread"
cidr_blocks = "0.0.0.0/0"
},
{
from_port = 50000
to_port = 50000
protocol = "tcp"
description = "rsync"
cidr_blocks = "0.0.0.0/0"
},
{
from_port = 22
to_port = 22
protocol = "tcp"
description = "SSH ports"
cidr_blocks = "0.0.0.0/0"
},
{
from_port = 4803
to_port = 4804
protocol = "udp"
description = "spread ports"
cidr_blocks = "0.0.0.0/0"
},
{
from_port = 14159
to_port = 14161
protocol = "udp"
description = "inter node comms"
cidr_blocks = "0.0.0.0/0"
}
]
}
variable "default_sg_ingress_cidr_blocks" {
description = "Default CIDR block for sg ingress rules"
default = "0.0.0.0/0"
}
variable "role_path" {
description = "path specified on role creation"
default = "/"
}
variable "sse_algorithm" {
description = "Type of Server Side Encryption algorithm"
type = string
default = "AES256"
}
variable "sse_kms_master_key_id" {
description = "ID of the KMS Master key for Server Side Encryption"
type = string
default = null
}
#######################
variable "tags" {
description = "tags to be applied to the resources created"
type = map(string)
}
variable "custom_backup_bucket_name" {
description = "custom name for backup bucket"
type = string
default = ""
}
variable "custom_eon_bucket_name" {
description = "custom name for backup bucket"
type = string
default = ""
}
variable "custom_cf_name" {
description = "custom name for backup bucket"
type = string
default = ""
}