-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tf
523 lines (440 loc) · 13.2 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
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
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
terraform {
required_providers {
aws = {
source = "hashicorp/aws"
}
}
}
provider "aws" {
region = var.region
}
// Create DynamoDB
resource "aws_dynamodb_table" "reddit-sentiment-db" {
name = "reddit-sentiment"
billing_mode = "PROVISIONED"
read_capacity= "25"
write_capacity= "25"
attribute {
name = "date"
type = "S"
}
hash_key = "date"
}
// Create role for redditor consumer lambda
resource "aws_iam_role" "reddit-consumer-role" {
name = "reddit-consumer-role"
assume_role_policy = jsonencode({
Version = "2012-10-17"
Statement = [{
Action = "sts:AssumeRole"
Effect = "Allow"
Principal = {
Service = "lambda.amazonaws.com"
}
}]
})
}
resource "aws_iam_policy" "reddit-consumer-policy" {
name = "reddit-consumer-policy"
policy = jsonencode({
Version = "2012-10-17"
Statement = [{
Effect = "Allow"
Action = [
"logs:CreateLogGroup",
"logs:CreateLogStream",
"logs:PutLogEvents"
]
Resource = ["arn:aws:logs:*:*:*"]
},{
Effect = "Allow"
Action = [
"comprehend:DetectSentiment"
]
Resource = ["*"]
},{
Effect = "Allow"
Action = [
"dynamodb:UpdateItem"
]
Resource = ["${aws_dynamodb_table.reddit-sentiment-db.arn}"]
}]
})
}
resource "aws_iam_role_policy_attachment" "reddit-consumer" {
policy_arn = aws_iam_policy.reddit-consumer-policy.arn
role = aws_iam_role.reddit-consumer-role.name
}
// Provisioner to install dependencies in lambda package before upload it.
resource "null_resource" "reddit-consumer" {
triggers = {
updated_at = timestamp()
}
provisioner "local-exec" {
command = "npm install"
working_dir = "${path.module}/reddit-consumer/"
}
}
// Archive reddit consumer lambda
data "archive_file" "reddit-consumer" {
type = "zip"
source_dir = "reddit-consumer/"
output_path = "${path.module}/.terraform/archive_files/reddit-consumer-function.zip"
depends_on = [null_resource.reddit-consumer]
}
// Create reddit consumer lambda
resource "aws_lambda_function" "reddit-consumer" {
function_name = "reddit-consumer"
filename = "${path.module}/.terraform/archive_files/reddit-consumer-function.zip"
handler = "index.handler"
role = aws_iam_role.reddit-consumer-role.arn
runtime = "nodejs18.x"
}
// Create producer
// Create a bucket
resource "aws_s3_bucket" "reddit-producer" {
bucket = "reddit-producer"
}
// Zip files
data "archive_file" "reddit-producer" {
type = "zip"
source_dir = "./reddit-producer/"
output_path = "./reddit-producer/reddit-producer.zip"
}
// Upload zip to s3
resource "aws_s3_object" "reddit-producer" {
bucket = "${aws_s3_bucket.reddit-producer.id}"
key = "reddit-producer.zip"
source = "${data.archive_file.reddit-producer.output_path}"
source_hash = filemd5(data.archive_file.reddit-producer.output_path)
etag = filemd5(data.archive_file.reddit-producer.output_path)
}
// Create role for reddit-producer
resource "aws_iam_role" "reddit-producer-role" {
name = "reddit-producer-role"
assume_role_policy = jsonencode({
Version = "2012-10-17"
Statement = [{
Action = "sts:AssumeRole"
Effect = "Allow"
Principal = {
Service = "ec2.amazonaws.com"
}
}]
})
}
resource "aws_iam_instance_profile" "ec2-profile-reddit-producer-role" {
name = "ec2-profile-reddit-producer-role"
role = aws_iam_role.reddit-producer-role.name
}
resource "aws_iam_policy" "reddit-producer-policy" {
name = "reddit-producer-policy"
policy = jsonencode({
Version = "2012-10-17"
Statement = [{
Effect = "Allow"
Action = [
"s3:GetObject",
"s3:ListBucket"
]
Resource = ["${aws_s3_bucket.reddit-producer.arn}", "${aws_s3_bucket.reddit-producer.arn}/*"]
}]
})
}
resource "aws_iam_role_policy_attachment" "reddit-producer" {
policy_arn = aws_iam_policy.reddit-producer-policy.arn
role = aws_iam_role.reddit-producer-role.name
}
resource "aws_security_group" "reddit-producer" {
name = "reddit-producer"
description = "Allow SSH traffic via Terraform"
ingress {
from_port = 22
to_port = 22
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
}
egress {
from_port = 0
to_port = 0
protocol = "-1"
cidr_blocks = ["0.0.0.0/0"]
}
}
resource "aws_instance" "reddit-producer" {
ami = "${var.ami-id}"
instance_type = "${var.ec2-instance-type}"
root_block_device {
volume_size = 8
}
iam_instance_profile = aws_iam_instance_profile.ec2-profile-reddit-producer-role.name
vpc_security_group_ids = [aws_security_group.reddit-producer.id]
key_name = "${var.ssh-key-pair-name}"
user_data = <<-EOL
#!/bin/bash -xe
sudo apt-get update
sudo apt install awscli -y
sudo apt install python3-pip -y
sudo apt-get install supervisor
sudo apt install unzip
cd /home/ubuntu
aws s3 cp s3://reddit-producer/reddit-producer.zip ./
unzip -n reddit-producer.zip
sudo mv reddit_producer.conf /etc/supervisor/conf.d/
pip3 install -r requirements.txt
sudo supervisorctl reread
sudo supervisorctl update
EOL
tags = {
Name = "reddit-producer"
}
depends_on = [aws_s3_object.reddit-producer]
}
// Create role for sentiment-api lambda
resource "aws_iam_role" "sentiment-api-role" {
name = "sentiment-api-role"
assume_role_policy = jsonencode({
Version = "2012-10-17"
Statement = [{
Action = "sts:AssumeRole"
Effect = "Allow"
Principal = {
Service = "lambda.amazonaws.com"
}
}]
})
}
resource "aws_iam_policy" "sentiment-api-policy" {
name = "sentiment-api-policy"
policy = jsonencode({
Version = "2012-10-17"
Statement = [{
Effect = "Allow"
Action = [
"logs:CreateLogGroup",
"logs:CreateLogStream",
"logs:PutLogEvents"
]
Resource = ["arn:aws:logs:*:*:*"]
},{
Effect = "Allow"
Action = [
"dynamodb:GetItem"
]
Resource = ["${aws_dynamodb_table.reddit-sentiment-db.arn}"]
}]
})
}
resource "aws_iam_role_policy_attachment" "sentiment-api" {
policy_arn = aws_iam_policy.sentiment-api-policy.arn
role = aws_iam_role.sentiment-api-role.name
}
// Provisioner to install dependencies in lambda package before upload it.
resource "null_resource" "sentiment-api" {
triggers = {
updated_at = timestamp()
}
provisioner "local-exec" {
command = "npm install"
working_dir = "${path.module}/sentiment-api/"
}
}
// Archive sentiment-api lambda
data "archive_file" "sentiment-api" {
type = "zip"
source_dir = "sentiment-api/"
output_path = "${path.module}/.terraform/archive_files/sentiment-api-function.zip"
depends_on = [null_resource.sentiment-api]
}
// Create sentiment-api lambda
resource "aws_lambda_function" "sentiment-api" {
function_name = "sentiment-api"
filename = "${path.module}/.terraform/archive_files/sentiment-api-function.zip"
handler = "index.handler"
role = aws_iam_role.sentiment-api-role.arn
runtime = "nodejs18.x"
}
// Create API Gateway to sentiment-api
resource "aws_apigatewayv2_api" "sentiment-api" {
name = "sentiment-api-gateway"
protocol_type = "HTTP"
cors_configuration {
allow_origins = ["*"]
allow_methods = ["GET"]
allow_headers = ["*"]
max_age = 300
}
}
resource "aws_apigatewayv2_stage" "sentiment-api" {
api_id = aws_apigatewayv2_api.sentiment-api.id
name = "prod"
auto_deploy = true
access_log_settings {
destination_arn = aws_cloudwatch_log_group.sentiment-api-gateway.arn
format = jsonencode({
requestId = "$context.requestId"
sourceIp = "$context.identity.sourceIp"
requestTime = "$context.requestTime"
protocol = "$context.protocol"
httpMethod = "$context.httpMethod"
resourcePath = "$context.resourcePath"
routeKey = "$context.routeKey"
status = "$context.status"
responseLength = "$context.responseLength"
integrationErrorMessage = "$context.integrationErrorMessage"
}
)
}
}
resource "aws_apigatewayv2_integration" "sentiment-api" {
api_id = aws_apigatewayv2_api.sentiment-api.id
integration_uri = aws_lambda_function.sentiment-api.invoke_arn
integration_type = "AWS_PROXY"
integration_method = "POST"
}
resource "aws_apigatewayv2_route" "sentiment-api" {
api_id = aws_apigatewayv2_api.sentiment-api.id
route_key = "GET /sentiment-level"
target = "integrations/${aws_apigatewayv2_integration.sentiment-api.id}"
}
resource "aws_cloudwatch_log_group" "sentiment-api-gateway" {
name = "/aws/api_gateway/${aws_apigatewayv2_api.sentiment-api.name}"
retention_in_days = 30
}
resource "aws_lambda_permission" "sentiment-api-gateway" {
statement_id = "AllowExecutionFromAPIGateway"
action = "lambda:InvokeFunction"
function_name = aws_lambda_function.sentiment-api.function_name
principal = "apigateway.amazonaws.com"
source_arn = "${aws_apigatewayv2_api.sentiment-api.execution_arn}/*/*"
}
# Create frontend bucket
resource "aws_s3_bucket" "redditSentimentMeter" {
bucket = "redditSentimentMeter"
}
resource "aws_s3_bucket_ownership_controls" "redditSentimentMeter" {
bucket = aws_s3_bucket.redditSentimentMeter.id
rule {
object_ownership = "BucketOwnerPreferred"
}
}
resource "aws_s3_bucket_public_access_block" "redditSentimentMeter" {
bucket = aws_s3_bucket.redditSentimentMeter.id
block_public_acls = false
block_public_policy = false
ignore_public_acls = false
restrict_public_buckets = false
}
resource "aws_s3_bucket_acl" "redditSentimentMeter" {
depends_on = [
aws_s3_bucket_ownership_controls.redditSentimentMeter,
aws_s3_bucket_public_access_block.redditSentimentMeter,
]
bucket = aws_s3_bucket.redditSentimentMeter.id
acl = "public-read"
}
resource "aws_s3_bucket_policy" "redditSentimentMeter" {
bucket = "${aws_s3_bucket.redditSentimentMeter.id}"
policy = <<POLICY
{
"Version":"2012-10-17",
"Statement":[{
"Sid":"AddPerm",
"Effect":"Allow",
"Principal":"*",
"Action":["s3:GetObject"],
"Resource":["arn:aws:s3:::redditSentimentMeter/*"]
}]
}
POLICY
depends_on = [aws_s3_bucket_acl.redditSentimentMeter]
}
resource "aws_s3_bucket_website_configuration" "redditSentimentMeter" {
bucket = aws_s3_bucket.redditSentimentMeter.id
index_document {
suffix = "index.html"
}
error_document {
key = "error.html"
}
}
// Provisioner to install dependencies in redditSentimentMeter
resource "null_resource" "redditSentimentMeter-install" {
triggers = {
updated_at = timestamp()
}
provisioner "local-exec" {
command = "npm install"
working_dir = "${path.module}/frontend/"
}
}
// Creates build
resource "null_resource" "redditSentimentMeter-build" {
triggers = {
updated_at = timestamp()
}
provisioner "local-exec" {
command = "npm run build"
working_dir = "${path.module}/frontend/"
}
depends_on = [null_resource.redditSentimentMeter-install]
}
// Upload build files
resource "aws_s3_object" "redditSentimentMeter-build" {
for_each = fileset(var.frontend_upload_directory, "**/*.*")
bucket = aws_s3_bucket.redditSentimentMeter.bucket
key = replace(each.value, var.frontend_upload_directory, "")
source = "${var.frontend_upload_directory}${each.value}"
acl = "public-read"
etag = filemd5("${var.frontend_upload_directory}${each.value}")
content_type = lookup(var.mime_types, split(".", each.value)[length(split(".", each.value)) - 1])
depends_on = [null_resource.redditSentimentMeter-build]
}
// Configure CloudFront CDN
resource "aws_cloudfront_distribution" "redditSentimentMeter" {
origin {
custom_origin_config {
http_port = "80"
https_port = "443"
origin_protocol_policy = "http-only"
origin_ssl_protocols = ["TLSv1", "TLSv1.1", "TLSv1.2"]
}
domain_name = aws_s3_bucket.redditSentimentMeter.bucket_domain_name
origin_id = aws_s3_bucket.redditSentimentMeter.bucket
}
enabled = true
default_root_object = "index.html"
default_cache_behavior {
viewer_protocol_policy = "redirect-to-https"
compress = true
allowed_methods = ["GET", "HEAD"]
cached_methods = ["GET", "HEAD"]
target_origin_id = aws_s3_bucket.redditSentimentMeter.bucket
min_ttl = 0
default_ttl = 86400
max_ttl = 3153600
forwarded_values {
query_string = false
cookies {
forward = "none"
}
}
}
custom_error_response {
error_caching_min_ttl = 3000
error_code = 404
response_code = 200
response_page_path = "/index.html"
}
aliases = ["${var.domain}"]
restrictions {
geo_restriction {
restriction_type = "none"
}
}
viewer_certificate {
acm_certificate_arn = var.ssl-cert-arn
ssl_support_method = "sni-only"
cloudfront_default_certificate = true
}
}