-
Notifications
You must be signed in to change notification settings - Fork 34
/
event_source_mappings.tf
204 lines (173 loc) · 7.12 KB
/
event_source_mappings.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
locals {
// compute all event source mappings for DynamoDb
dynamodb_event_sources = [
for k, v in var.event_source_mappings : lookup(v, "event_source_arn", null) if length(regexall(".*:dynamodb:.*", lookup(v, "event_source_arn", null))) > 0
]
// compute all event source mappings for Kinesis
kinesis_event_sources = [
for k, v in var.event_source_mappings : lookup(v, "event_source_arn", null) if length(regexall(".*:kinesis:.*", lookup(v, "event_source_arn", null))) > 0
]
// compute all Kinesis consumers for enhanced fan-out
kinesis_consumers = [
for k, v in var.event_source_mappings : lookup(v, "event_source_arn", null) if length(regexall(".*:kinesis:.*/consumer/.*", lookup(v, "event_source_arn", null))) > 0
]
// compute all event source mappings for SQS
sqs_event_sources = [
for k, v in var.event_source_mappings : lookup(v, "event_source_arn", null) if length(regexall(".*:sqs:.*", lookup(v, "event_source_arn", null))) > 0
]
// compute SQS destination ARNs for discarded batches
on_failure_sqs_destination_arns = [
for k, v in var.event_source_mappings : lookup(v, "destination_arn_on_failure", "") if length(regexall(".*:sqs:.*", lookup(v, "destination_arn_on_failure", ""))) > 0
]
// compute SNS destination ARNs for discarded batches
on_failure_sns_destination_arns = [
for k, v in var.event_source_mappings : lookup(v, "destination_arn_on_failure", "") if length(regexall(".*:sns:.*", lookup(v, "destination_arn_on_failure", ""))) > 0
]
}
resource "aws_lambda_event_source_mapping" "event_source" {
for_each = var.event_source_mappings
batch_size = lookup(each.value, "batch_size", null)
bisect_batch_on_function_error = lookup(each.value, "bisect_batch_on_function_error", null)
enabled = lookup(each.value, "enabled", null)
event_source_arn = lookup(each.value, "event_source_arn", null)
function_name = lookup(each.value, "function_name", null) != null ? each.value["function_name"] : (var.ignore_external_function_updates ? aws_lambda_function.lambda_external_lifecycle[0].arn : aws_lambda_function.lambda[0].arn)
maximum_batching_window_in_seconds = lookup(each.value, "maximum_batching_window_in_seconds", null)
maximum_retry_attempts = lookup(each.value, "maximum_retry_attempts", null)
maximum_record_age_in_seconds = lookup(each.value, "maximum_record_age_in_seconds", null)
parallelization_factor = lookup(each.value, "parallelization_factor", null)
starting_position = lookup(each.value, "starting_position", length(regexall(".*:sqs:.*", lookup(each.value, "event_source_arn", null))) > 0 ? null : "TRIM_HORIZON")
starting_position_timestamp = lookup(each.value, "starting_position_timestamp", null)
function_response_types = lookup(each.value, "function_response_types", null)
dynamic "destination_config" {
for_each = lookup(each.value, "destination_arn_on_failure", null) != null ? [true] : []
content {
on_failure {
destination_arn = each.value["destination_arn_on_failure"]
}
}
}
dynamic "filter_criteria" {
for_each = try(each.value.filter_criteria, null) != null ? [true] : []
content {
dynamic "filter" {
for_each = try(flatten([each.value.filter_criteria]), [])
content {
pattern = try(filter.value.pattern, null)
}
}
}
}
dynamic "scaling_config" {
for_each = try(each.value.scaling_config, null) != null ? [true] : []
content {
maximum_concurrency = try(each.value.scaling_config.maximum_concurrency, null)
}
}
}
// type specific minimal permissions for supported event_sources,
// see https://github.com/awslabs/serverless-application-model/blob/develop/samtranslator/policy_templates_data/policy_templates.json
data "aws_iam_policy_document" "event_sources" {
count = length(var.event_source_mappings) > 0 ? 1 : 0
// SQS event source mapping permissions
dynamic "statement" {
for_each = length(local.sqs_event_sources) > 0 ? [true] : []
content {
actions = [
"sqs:ChangeMessageVisibility",
"sqs:ChangeMessageVisibilityBatch",
"sqs:DeleteMessage",
"sqs:DeleteMessageBatch",
"sqs:GetQueueAttributes",
"sqs:ReceiveMessage"
]
resources = [
for arn in local.sqs_event_sources : arn
]
}
}
// DynamoDb event source mapping permissions
dynamic "statement" {
for_each = length(local.dynamodb_event_sources) > 0 ? [true] : []
content {
actions = [
"dynamodb:DescribeStream",
"dynamodb:GetShardIterator",
"dynamodb:GetRecords",
"dynamodb:ListStreams"
]
resources = [
for arn in local.dynamodb_event_sources : arn
]
}
}
// Kinesis event source mapping permissions
dynamic "statement" {
for_each = length(local.kinesis_event_sources) > 0 ? [true] : []
content {
actions = [
"kinesis:ListStreams",
"kinesis:DescribeLimits"
]
resources = [
// extracting 'arn:${Partition}:kinesis:${Region}:${Account}:stream/' from the kinesis stream ARN
// see https://docs.aws.amazon.com/IAM/latest/UserGuide/list_amazonkinesis.html#amazonkinesis-resources-for-iam-policies
length(regexall("arn:.*:kinesis:.*:.*:stream/", local.kinesis_event_sources[0])) > 0 ? "${regex("arn:.*:kinesis:.*:.*:stream/", local.kinesis_event_sources[0])}*" : ""
]
}
}
dynamic "statement" {
for_each = length(local.kinesis_event_sources) > 0 ? [true] : []
content {
actions = [
"kinesis:DescribeStream",
"kinesis:DescribeStreamSummary",
"kinesis:GetRecords",
"kinesis:GetShardIterator",
"kinesis:ListShards"
]
resources = [
for arn in local.kinesis_event_sources : replace(arn, "/\\/consumer.*/", "")
]
}
}
dynamic "statement" {
for_each = length(local.kinesis_consumers) > 0 ? [true] : []
content {
actions = ["kinesis:SubscribeToShard"]
resources = [for arn in local.kinesis_consumers : arn]
}
}
// SQS permission for on-failure destinations
dynamic "statement" {
for_each = length(local.on_failure_sqs_destination_arns) > 0 ? [true] : []
content {
actions = [
"sqs:SendMessage"
]
resources = [
for arn in local.on_failure_sqs_destination_arns : arn
]
}
}
// SNS permission for on-failure destinations
dynamic "statement" {
for_each = length(local.on_failure_sns_destination_arns) > 0 ? [true] : []
content {
actions = [
"sns:Publish"
]
resources = [
for arn in local.on_failure_sns_destination_arns : arn
]
}
}
}
resource "aws_iam_policy" "event_sources" {
count = length(var.event_source_mappings) > 0 ? 1 : 0
policy = data.aws_iam_policy_document.event_sources[count.index].json
}
resource "aws_iam_role_policy_attachment" "event_sources" {
count = length(var.event_source_mappings) > 0 ? 1 : 0
policy_arn = aws_iam_policy.event_sources[count.index].arn
role = aws_iam_role.lambda.name
}