-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tf
276 lines (259 loc) · 7.85 KB
/
main.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
terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 5.0"
}
}
required_version = ">= 1.2.0"
}
provider "aws" {
region = var.aws_region
}
# IAM
data "aws_iam_policy_document" "assume_role_policy" {
statement {
sid = ""
effect = "Allow"
principals {
identifiers = ["lambda.amazonaws.com"]
type = "Service"
}
actions = ["sts:AssumeRole"]
}
}
resource "aws_iam_role" "lambda_transcriber_role" {
name = "${var.service_name}-transcriber-role"
assume_role_policy = data.aws_iam_policy_document.assume_role_policy.json
description = "Lambda role for ${var.service_name}-transcriber"
tags = {
Service = var.service_name
}
}
resource "aws_iam_role" "lambda_file_creator_role" {
name = "${var.service_name}-file-creator-role"
assume_role_policy = data.aws_iam_policy_document.assume_role_policy.json
description = "Lambda role for ${var.service_name}-file-creator"
tags = {
Service = var.service_name
}
}
resource "aws_iam_role_policy" "lambda_transcriber_role_policy" {
name = "${var.service_name}TranscriberPolicy"
role = aws_iam_role.lambda_transcriber_role.id
policy = jsonencode({
Version = "2012-10-17"
Statement = [
{
"Sid" : "Statement0",
"Effect" : "Allow",
"Action" : [
"logs:CreateLogGroup",
"logs:CreateLogStream",
"logs:PutLogEvents",
"transcribe:StartTranscriptionJob"
],
"Resource" : [
"*"
]
},
{
"Sid" : "Statement1",
"Effect" : "Allow",
"Action" : [
"sqs:ReceiveMessage",
"sqs:DeleteMessage",
"sqs:GetQueueAttributes"
],
"Resource" : ["${aws_sqs_queue.transcriber_queue.arn}"]
},
{
"Sid" : "Statement2",
"Effect" : "Allow",
"Action" : [
"s3:GetObject",
"s3:PutObject"
],
"Resource" : [
"arn:aws:s3:::${var.aws_s3_bucket}/*"
]
}
]
})
}
resource "aws_iam_role_policy" "lambda_file_creator_role_policy" {
name = "${var.service_name}FileCreatorPolicy"
role = aws_iam_role.lambda_file_creator_role.id
policy = jsonencode({
Version = "2012-10-17"
Statement = [
{
"Sid" : "Statement0",
"Effect" : "Allow",
"Action" : [
"logs:CreateLogGroup",
"logs:CreateLogStream",
"logs:PutLogEvents",
"transcribe:DeleteTranscriptionJob",
],
"Resource" : [
"*"
]
},
{
"Sid" : "Statement1",
"Effect" : "Allow",
"Action" : [
"sqs:ReceiveMessage",
"sqs:DeleteMessage",
"sqs:GetQueueAttributes"
],
"Resource" : ["${aws_sqs_queue.file_creator_queue.arn}"]
},
{
"Sid" : "Statement2",
"Effect" : "Allow",
"Action" : [
"s3:GetObject",
"s3:PutObject"
],
"Resource" : [
"arn:aws:s3:::${var.aws_s3_bucket}/*"
]
}
]
})
}
# Lambda
data "archive_file" "lambda_function_zip" {
type = "zip"
source_dir = "src"
output_path = "dist/lambda/function_payload.zip"
}
resource "aws_lambda_function" "lambda_transcriber" {
function_name = "${var.service_name}-transcriber"
filename = data.archive_file.lambda_function_zip.output_path
source_code_hash = data.archive_file.lambda_function_zip.output_base64sha256
description = "create a transcription job."
environment {
variables = {
AWS_S3_TRANSCRIPTION_DIST_KEY = var.aws_s3_transcription_dist_key
AWS_S3_CREATION_DIST_KEY = var.aws_s3_creation_dist_key
AWS_TRANSCRIBE_LANGUAGE_CODE = var.aws_transcribe_language_code
}
}
handler = "transcriber.lambda_handler"
logging_config {
log_format = "JSON"
application_log_level = var.lambda_application_log_level
system_log_level = var.lambda_system_log_level
}
memory_size = var.lambda_memory_size
role = aws_iam_role.lambda_transcriber_role.arn
runtime = var.lambda_runtime
timeout = var.lambda_timeout
tags = {
Service = var.service_name
}
}
resource "aws_lambda_function" "lambda_file_creator" {
function_name = "${var.service_name}-file-creator"
filename = data.archive_file.lambda_function_zip.output_path
source_code_hash = data.archive_file.lambda_function_zip.output_base64sha256
description = "create transcripts."
environment {
variables = {
AWS_S3_TRANSCRIPTION_DIST_KEY = var.aws_s3_transcription_dist_key
AWS_S3_CREATION_DIST_KEY = var.aws_s3_creation_dist_key
AWS_TRANSCRIBE_LANGUAGE_CODE = var.aws_transcribe_language_code
}
}
handler = "file_creator.lambda_handler"
logging_config {
log_format = "JSON"
application_log_level = var.lambda_application_log_level
system_log_level = var.lambda_system_log_level
}
memory_size = var.lambda_memory_size
role = aws_iam_role.lambda_file_creator_role.arn
runtime = var.lambda_runtime
timeout = var.lambda_timeout
tags = {
Service = var.service_name
}
}
resource "aws_lambda_event_source_mapping" "lambda_transcriber_event_source_mapping" {
batch_size = var.lambda_event_batch_size
event_source_arn = aws_sqs_queue.transcriber_queue.arn
function_name = aws_lambda_function.lambda_transcriber.arn
}
resource "aws_lambda_event_source_mapping" "lambda_file_creator_event_source_mapping" {
batch_size = var.lambda_event_batch_size
event_source_arn = aws_sqs_queue.file_creator_queue.arn
function_name = aws_lambda_function.lambda_file_creator.arn
}
# SQS
resource "aws_sqs_queue" "transcriber_queue" {
name = "${var.service_name}TranscriberQueue"
delay_seconds = var.sqs_delay_seconds
max_message_size = var.sqs_max_message_size
message_retention_seconds = var.sqs_message_retention_seconds
receive_wait_time_seconds = var.sqs_receive_wait_time_seconds
visibility_timeout_seconds = var.sqs_visibility_timeout_seconds
tags = {
Service = var.service_name
}
}
resource "aws_sqs_queue" "file_creator_queue" {
name = "${var.service_name}FileCreatorQueue"
delay_seconds = var.sqs_delay_seconds
max_message_size = var.sqs_max_message_size
message_retention_seconds = var.sqs_message_retention_seconds
receive_wait_time_seconds = var.sqs_receive_wait_time_seconds
visibility_timeout_seconds = var.sqs_visibility_timeout_seconds
tags = {
Service = var.service_name
}
}
data "aws_iam_policy_document" "transcriber_queue_policy" {
statement {
sid = ""
effect = "Allow"
principals {
identifiers = ["s3.amazonaws.com"]
type = "Service"
}
actions = ["sqs:SendMessage"]
resources = [aws_sqs_queue.transcriber_queue.arn]
condition {
test = "ArnLike"
variable = "aws:SourceArn"
values = ["arn:aws:s3:::${var.aws_s3_bucket}"]
}
}
}
data "aws_iam_policy_document" "file_creator_queue_policy" {
statement {
sid = ""
effect = "Allow"
principals {
identifiers = ["s3.amazonaws.com"]
type = "Service"
}
actions = ["sqs:SendMessage"]
resources = [aws_sqs_queue.file_creator_queue.arn]
condition {
test = "ArnLike"
variable = "aws:SourceArn"
values = ["arn:aws:s3:::${var.aws_s3_bucket}"]
}
}
}
resource "aws_sqs_queue_policy" "transcriber_queue_policy" {
queue_url = aws_sqs_queue.transcriber_queue.id
policy = data.aws_iam_policy_document.transcriber_queue_policy.json
}
resource "aws_sqs_queue_policy" "file_creator_queue_policy" {
queue_url = aws_sqs_queue.file_creator_queue.id
policy = data.aws_iam_policy_document.file_creator_queue_policy.json
}