-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmain.tf
124 lines (107 loc) · 3.55 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
locals {
# Create a result map of all built-in event rules and given custom rules.
event_rules = merge(
var.enable_ecs_task_state_event_rule ? {
ECSTaskStateChange = {
detail-type = ["ECS Task State Change"]
detail = var.ecs_task_state_event_rule_detail
}
} : {},
var.enable_ecs_deployment_state_event_rule ? {
ECSDeploymentStateChange = {
detail-type = ["ECS Deployment State Change"]
detail = var.ecs_deployment_state_event_rule_detail
}
} : {},
var.enable_ecs_service_action_event_rule ? {
ECSServiceAction = {
detail-type = ["ECS Service Action"]
detail = var.ecs_service_action_event_rule_detail
}
} : {},
var.custom_event_rules
)
}
data "aws_caller_identity" "current" {}
data "aws_region" "current" {}
resource "aws_cloudwatch_event_rule" "this" {
for_each = local.event_rules
name = "${var.name}-${each.key}"
event_pattern = jsonencode({
source = [try(each.value.source, "aws.ecs")]
detail-type = each.value.detail-type
detail = each.value.detail
})
tags = var.tags
}
resource "aws_cloudwatch_event_target" "this" {
for_each = local.event_rules
target_id = "${var.name}-${each.key}"
arn = module.slack_notifications.lambda_function_arn
rule = aws_cloudwatch_event_rule.this[each.key].name
}
module "slack_notifications" {
source = "terraform-aws-modules/lambda/aws"
version = "7.0.0"
function_name = var.name
role_name = var.role_name
create_role = var.create_role
lambda_role = var.lambda_role
description = "Receive events from EventBridge and send them to Slack"
handler = "slack_notifications.lambda_handler"
source_path = "${path.module}/functions/slack_notifications.py"
runtime = "python3.10"
timeout = 30
publish = true
memory_size = var.lambda_memory_size
recreate_missing_package = var.recreate_missing_package
allowed_triggers = {
for rule, params in local.event_rules : rule => {
principal = "events.amazonaws.com"
source_arn = aws_cloudwatch_event_rule.this[rule].arn
statement_id = "AllowExecutionFrom${rule}"
}
}
environment_variables = {
SLACK_WEBHOOK_URL = var.slack_webhook_url
LOG_EVENTS = true
LOG_LEVEL = "INFO"
SLACK_WEBHOOK_URL_SOURCE_TYPE = var.slack_webhook_url_source_type
}
cloudwatch_logs_retention_in_days = var.cloudwatch_logs_retention_in_days
attach_policy_json = (var.slack_webhook_url_source_type != "text")
policy_json = var.slack_webhook_url_source_type == "secretsmanager" ? jsonencode(
{
"Version" : "2012-10-17",
"Statement" : [
{
"Effect" : "Allow",
"Action" : [
"secretsmanager:GetSecretValue",
],
"Resource" : [
"arn:aws:secretsmanager:${data.aws_region.current.name}:${data.aws_caller_identity.current.account_id}:secret:${var.slack_webhook_url}*",
]
}
]
}
) : var.slack_webhook_url_source_type == "ssm" ? jsonencode(
{
"Version" : "2012-10-17",
"Statement" : [
{
"Effect" : "Allow",
"Action" : [
"ssm:GetParameter",
"ssm:GetParameters",
"ssm:GetParametersByPath",
],
"Resource" : [
"arn:aws:ssm:${data.aws_region.current.name}:${data.aws_caller_identity.current.account_id}:parameter${var.slack_webhook_url}*",
]
}
]
}
) : null
tags = var.tags
}