-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tf
115 lines (98 loc) · 2.47 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
locals {
name = "${var.name}-healthcheck-report"
}
resource "aws_iam_role" "this" {
name = local.name
assume_role_policy = <<EOF
{
"Version": "2012-10-17",
"Statement": [
{
"Action": "sts:AssumeRole",
"Principal": {
"Service": "lambda.amazonaws.com"
},
"Effect": "Allow",
"Sid": ""
}
]
}
EOF
}
resource "aws_iam_policy" "this" {
name = local.name
path = "/"
policy = <<EOF
{
"Version": "2012-10-17",
"Statement": [
{
"Action": [
"logs:CreateLogGroup",
"logs:CreateLogStream",
"logs:PutLogEvents"
],
"Resource": "arn:aws:logs:*:*:*",
"Effect": "Allow"
},
{
"Action": [
"ses:SendRawEmail",
"cloudwatch:GetMetricData"
],
"Resource": "*",
"Effect": "Allow"
}
]
}
EOF
}
resource "aws_iam_role_policy_attachment" "this" {
role = aws_iam_role.this.name
policy_arn = aws_iam_policy.this.arn
}
resource "aws_cloudwatch_log_group" "this" {
name = "/aws/lambda/${local.name}"
retention_in_days = 14
}
resource "aws_lambda_function" "this" {
filename = "${path.module}/lambda.zip"
function_name = local.name
role = aws_iam_role.this.arn
handler = "main"
timeout = "60"
source_code_hash = filebase64sha256("${path.module}/lambda.zip")
runtime = "provided.al2023"
environment {
variables = {
REGION = var.region
METRIC_NAME = var.cw_metric_name
METRIC_NAMESPACE = var.cw_metric_namespace
METRIC_DIMENSION = var.cw_metric_dimension
EMAIL_TARGET = var.email_target_address
EMAIL_SOURCE = var.email_source_address
}
}
}
resource "aws_cloudwatch_event_rule" "trigger" {
name = local.name
description = "Trigger lambda on schedule"
schedule_expression = var.lambda_schedule
}
resource "aws_cloudwatch_event_target" "this" {
rule = aws_cloudwatch_event_rule.trigger.name
arn = aws_lambda_function.this.arn
}
resource "aws_lambda_permission" "this" {
statement_id = "${aws_lambda_function.this.function_name}-AllowExecutionFromCloudWatch"
action = "lambda:InvokeFunction"
function_name = aws_lambda_function.this.function_name
principal = "events.amazonaws.com"
source_arn = aws_cloudwatch_event_rule.trigger.arn
}
resource "aws_ses_email_identity" "this" {
email = var.email_source_address
}
resource "aws_ses_email_identity" "target" {
email = var.email_target_address
}