forked from terraform-aws-modules/terraform-aws-eventbridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
415 lines (345 loc) · 10.9 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
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
variable "create" {
description = "Controls whether resources should be created"
type = bool
default = true
}
variable "create_role" {
description = "Controls whether IAM roles should be created"
type = bool
default = true
}
variable "append_rule_postfix" {
description = "Controls whether to append '-rule' to the name of the rule"
type = bool
default = true
}
variable "append_connection_postfix" {
description = "Controls whether to append '-connection' to the name of the connection"
type = bool
default = true
}
variable "append_destination_postfix" {
description = "Controls whether to append '-destination' to the name of the destination"
type = bool
default = true
}
variable "append_schedule_group_postfix" {
description = "Controls whether to append '-group' to the name of the schedule group"
type = bool
default = true
}
variable "append_schedule_postfix" {
description = "Controls whether to append '-schedule' to the name of the schedule"
type = bool
default = true
}
variable "create_bus" {
description = "Controls whether EventBridge Bus resource should be created"
type = bool
default = true
}
variable "create_rules" {
description = "Controls whether EventBridge Rule resources should be created"
type = bool
default = true
}
variable "create_targets" {
description = "Controls whether EventBridge Target resources should be created"
type = bool
default = true
}
variable "create_permissions" {
description = "Controls whether EventBridge Permission resources should be created"
type = bool
default = true
}
variable "create_archives" {
description = "Controls whether EventBridge Archive resources should be created"
type = bool
default = false
}
variable "create_connections" {
description = "Controls whether EventBridge Connection resources should be created"
type = bool
default = false
}
variable "create_api_destinations" {
description = "Controls whether EventBridge Destination resources should be created"
type = bool
default = false
}
variable "create_schemas_discoverer" {
description = "Controls whether default schemas discoverer should be created"
type = bool
default = false
}
variable "create_schedule_groups" {
description = "Controls whether EventBridge Schedule Group resources should be created"
type = bool
default = true
}
variable "create_schedules" {
description = "Controls whether EventBridge Schedule resources should be created"
type = bool
default = true
}
#######################
variable "bus_name" {
description = "A unique name for your EventBridge Bus"
type = string
default = "default"
}
variable "event_source_name" {
description = "The partner event source that the new event bus will be matched with. Must match name."
type = string
default = null
}
variable "schemas_discoverer_description" {
description = "Default schemas discoverer description"
type = string
default = "Auto schemas discoverer event"
}
variable "rules" {
description = "A map of objects with EventBridge Rule definitions."
type = map(any)
default = {}
}
variable "targets" {
description = "A map of objects with EventBridge Target definitions."
type = any
default = {}
}
variable "archives" {
description = "A map of objects with the EventBridge Archive definitions."
type = map(any)
default = {}
}
variable "permissions" {
description = "A map of objects with EventBridge Permission definitions."
type = map(any)
default = {}
}
variable "connections" {
description = "A map of objects with EventBridge Connection definitions."
type = any
default = {}
}
variable "api_destinations" {
description = "A map of objects with EventBridge Destination definitions."
type = map(any)
default = {}
}
variable "schedule_groups" {
description = "A map of objects with EventBridge Schedule Group definitions."
type = any
default = {}
}
variable "schedules" {
description = "A map of objects with EventBridge Schedule definitions."
type = map(any)
default = {}
}
variable "tags" {
description = "A map of tags to assign to resources."
type = map(string)
default = {}
}
variable "schedule_group_timeouts" {
description = "A map of objects with EventBridge Schedule Group create and delete timeouts."
type = map(string)
default = {}
}
######
# IAM
######
variable "role_name" {
description = "Name of IAM role to use for EventBridge"
type = string
default = null
}
variable "role_description" {
description = "Description of IAM role to use for EventBridge"
type = string
default = null
}
variable "role_path" {
description = "Path of IAM role to use for EventBridge"
type = string
default = null
}
variable "role_force_detach_policies" {
description = "Specifies to force detaching any policies the IAM role has before destroying it."
type = bool
default = true
}
variable "role_permissions_boundary" {
description = "The ARN of the policy that is used to set the permissions boundary for the IAM role used by EventBridge"
type = string
default = null
}
variable "role_tags" {
description = "A map of tags to assign to IAM role"
type = map(string)
default = {}
}
###########
# Policies
###########
variable "attach_kinesis_policy" {
description = "Controls whether the Kinesis policy should be added to IAM role for EventBridge Target"
type = bool
default = false
}
variable "attach_kinesis_firehose_policy" {
description = "Controls whether the Kinesis Firehose policy should be added to IAM role for EventBridge Target"
type = bool
default = false
}
variable "attach_sqs_policy" {
description = "Controls whether the SQS policy should be added to IAM role for EventBridge Target"
type = bool
default = false
}
variable "attach_sns_policy" {
description = "Controls whether the SNS policy should be added to IAM role for EventBridge Target"
type = bool
default = false
}
variable "attach_ecs_policy" {
description = "Controls whether the ECS policy should be added to IAM role for EventBridge Target"
type = bool
default = false
}
variable "attach_lambda_policy" {
description = "Controls whether the Lambda Function policy should be added to IAM role for EventBridge Target"
type = bool
default = false
}
variable "attach_sfn_policy" {
description = "Controls whether the StepFunction policy should be added to IAM role for EventBridge Target"
type = bool
default = false
}
variable "attach_cloudwatch_policy" {
description = "Controls whether the Cloudwatch policy should be added to IAM role for EventBridge Target"
type = bool
default = false
}
variable "attach_api_destination_policy" {
description = "Controls whether the API Destination policy should be added to IAM role for EventBridge Target"
type = bool
default = false
}
variable "attach_tracing_policy" {
description = "Controls whether X-Ray tracing policy should be added to IAM role for EventBridge"
type = bool
default = false
}
variable "kinesis_target_arns" {
description = "The Amazon Resource Name (ARN) of the Kinesis Streams you want to use as EventBridge targets"
type = list(string)
default = []
}
variable "kinesis_firehose_target_arns" {
description = "The Amazon Resource Name (ARN) of the Kinesis Firehose Delivery Streams you want to use as EventBridge targets"
type = list(string)
default = []
}
variable "sqs_target_arns" {
description = "The Amazon Resource Name (ARN) of the AWS SQS Queues you want to use as EventBridge targets"
type = list(string)
default = []
}
variable "sns_target_arns" {
description = "The Amazon Resource Name (ARN) of the AWS SNS's you want to use as EventBridge targets"
type = list(string)
default = []
}
variable "ecs_target_arns" {
description = "The Amazon Resource Name (ARN) of the AWS ECS Tasks you want to use as EventBridge targets"
type = list(string)
default = []
}
variable "lambda_target_arns" {
description = "The Amazon Resource Name (ARN) of the Lambda Functions you want to use as EventBridge targets"
type = list(string)
default = []
}
variable "sfn_target_arns" {
description = "The Amazon Resource Name (ARN) of the StepFunctions you want to use as EventBridge targets"
type = list(string)
default = []
}
variable "cloudwatch_target_arns" {
description = "The Amazon Resource Name (ARN) of the Cloudwatch Log Streams you want to use as EventBridge targets"
type = list(string)
default = []
}
##########################
# Various custom policies
##########################
variable "attach_policy_json" {
description = "Controls whether policy_json should be added to IAM role"
type = bool
default = false
}
variable "attach_policy_jsons" {
description = "Controls whether policy_jsons should be added to IAM role"
type = bool
default = false
}
variable "attach_policy" {
description = "Controls whether policy should be added to IAM role"
type = bool
default = false
}
variable "attach_policies" {
description = "Controls whether list of policies should be added to IAM role"
type = bool
default = false
}
variable "number_of_policy_jsons" {
description = "Number of policies JSON to attach to IAM role"
type = number
default = 0
}
variable "number_of_policies" {
description = "Number of policies to attach to IAM role"
type = number
default = 0
}
variable "attach_policy_statements" {
description = "Controls whether policy_statements should be added to IAM role"
type = bool
default = false
}
variable "trusted_entities" {
description = "Additional trusted entities for assuming roles (trust relationship)"
type = list(string)
default = []
}
variable "policy_json" {
description = "An additional policy document as JSON to attach to IAM role"
type = string
default = null
}
variable "policy_jsons" {
description = "List of additional policy documents as JSON to attach to IAM role"
type = list(string)
default = []
}
variable "policy" {
description = "An additional policy document ARN to attach to IAM role"
type = string
default = null
}
variable "policies" {
description = "List of policy statements ARN to attach to IAM role"
type = list(string)
default = []
}
variable "policy_statements" {
description = "Map of dynamic policy statements to attach to IAM role"
type = any
default = {}
}