-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.tf
148 lines (127 loc) · 3.45 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
locals {
name = "${var.name}-healthcheck"
}
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": [
"cloudwatch:PutMetricData",
"ec2:CreateNetworkInterface",
"ec2:DescribeNetworkInterfaces",
"ec2:DeleteNetworkInterface",
"kms:GenerateDataKey",
"kms:Decrypt"
],
"Resource": "*",
"Effect": "Allow"
},
{
"Action": [
"secretsmanager:GetSecretValue"
],
"Resource": "arn:aws:secretsmanager:${var.region}:*:secret:${var.secret_name}*",
"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"
vpc_config {
subnet_ids = var.subnet_ids
security_group_ids = var.sg_ids
}
environment {
variables = {
REGION = var.region
CW_METRIC_NAME = var.cw_metric_name
CW_METRIC_NAMESPACE = var.cw_metric_namespace
TARGET_URL = var.target_url
SECRET_NAME = var.secret_name
}
}
}
resource "aws_cloudwatch_event_rule" "trigger" {
name = local.name
description = "Trigger creation of RDS snapshot 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_cloudwatch_metric_alarm" "default" {
alarm_name = "${var.target_url} not healthy"
comparison_operator = "GreaterThanThreshold"
evaluation_periods = "2"
metric_name = var.cw_metric_name
namespace = var.cw_metric_namespace
period = "300"
statistic = "Maximum"
threshold = "200"
alarm_description = "Monitors health of a specified endpoint"
insufficient_data_actions = []
treat_missing_data = "breaching"
dimensions = {
HealthcheckTarget = var.target_url
}
alarm_actions = [aws_sns_topic.sns.arn]
ok_actions = [aws_sns_topic.sns.arn]
}
resource "aws_sns_topic" "sns" {
name = "${var.name}-healthcheck"
}