-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathmain.tf
240 lines (204 loc) · 6.86 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
/**
* ## Module: cloudposse/terraform-aws-lambda-elasticsearch-cleanup
*
* This module creates a scheduled Lambda function which will delete old
* Elasticsearch indexes using SigV4Auth authentication. The lambda
* function can optionally send output to an SNS topic if the topic ARN
* is given
*/
# Data
#--------------------------------------------------------------
data "aws_iam_policy_document" "assume_role" {
count = local.enabled ? 1 : 0
statement {
actions = ["sts:AssumeRole"]
effect = "Allow"
principals {
type = "Service"
identifiers = ["lambda.amazonaws.com"]
}
}
}
data "aws_iam_policy_document" "es_logs" {
count = local.enabled ? 1 : 0
statement {
actions = [
"logs:CreateLogGroup",
"logs:CreateLogStream",
"logs:PutLogEvents"
]
effect = "Allow"
resources = ["*"]
}
statement {
actions = [
"es:ESHttpGet",
"es:ESHttpPut",
"es:ESHttpPost",
"es:ESHttpHead",
"es:ESHttpDelete",
"es:Describe*",
"es:List*"
]
effect = "Allow"
resources = [
"${var.es_domain_arn}/*",
]
}
}
data "aws_iam_policy_document" "sns" {
count = local.enabled ? 1 : 0
statement {
actions = [
"sns:Publish"
]
effect = "Allow"
resources = [
var.sns_arn
]
}
}
data "aws_iam_policy_document" "default" {
count = local.enabled ? 1 : 0
source_policy_documents = [join("", data.aws_iam_policy_document.es_logs[*].json)]
override_policy_documents = length(var.sns_arn) > 0 ? [join("", data.aws_iam_policy_document.sns[*].json)] : ["{}"]
}
locals {
enabled = module.this.enabled
skip_index_re = var.skip_index_re == null ? "^\\.kibana*" : var.skip_index_re
}
# Modules
#--------------------------------------------------------------
module "label" {
source = "cloudposse/label/null"
version = "0.25.0"
attributes = compact(concat(module.this.attributes, ["elasticsearch", "cleanup"]))
context = module.this.context
}
module "artifact" {
source = "cloudposse/module-artifact/external"
version = "0.8.0"
enabled = module.this.enabled
filename = "lambda.zip"
module_name = "terraform-aws-lambda-elasticsearch-cleanup"
module_path = path.module
git_ref = var.artifact_git_ref
url = var.artifact_url
}
# Locals
#--------------------------------------------------------------
locals {
function_name = module.label.id
}
# Resources
#--------------------------------------------------------------
resource "aws_lambda_function" "default" {
count = local.enabled ? 1 : 0
filename = module.artifact.file
function_name = local.function_name
description = local.function_name
timeout = var.timeout
runtime = "python${var.python_version}"
role = join("", aws_iam_role.default[*].arn)
handler = "es-cleanup.lambda_handler"
source_code_hash = module.artifact.base64sha256
tags = module.label.tags
environment {
variables = {
delete_after = var.delete_after
es_endpoint = var.es_endpoint
index = var.index_re
skip_index = local.skip_index_re
index_format = var.index_format
sns_arn = var.sns_arn
}
}
vpc_config {
subnet_ids = var.subnet_ids
security_group_ids = [join("", aws_security_group.default[*].id)]
}
}
resource "aws_security_group" "default" {
count = local.enabled ? 1 : 0
name = local.function_name
description = local.function_name
vpc_id = var.vpc_id
tags = module.label.tags
}
resource "aws_security_group_rule" "udp_dns_egress_from_lambda" {
count = local.enabled ? 1 : 0
description = "Allow outbound UDP traffic from Lambda Elasticsearch cleanup to DNS"
type = "egress"
from_port = 53
to_port = 53
protocol = "udp"
cidr_blocks = ["0.0.0.0/0"]
security_group_id = join("", aws_security_group.default[*].id)
}
resource "aws_security_group_rule" "tcp_dns_egress_from_lambda" {
count = local.enabled ? 1 : 0
description = "Allow outbound TCP traffic from Lambda Elasticsearch cleanup to DNS"
type = "egress"
from_port = 53
to_port = 53
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
security_group_id = join("", aws_security_group.default[*].id)
}
resource "aws_security_group_rule" "egress_from_lambda_to_es_cluster" {
count = local.enabled ? 1 : 0
description = "Allow outbound traffic from Lambda Elasticsearch cleanup SG to Elasticsearch SG"
type = "egress"
from_port = 443
to_port = 443
protocol = "tcp"
source_security_group_id = var.es_security_group_id
security_group_id = join("", aws_security_group.default[*].id)
}
resource "aws_security_group_rule" "ingress_to_es_cluster_from_lambda" {
count = local.enabled ? 1 : 0
description = "Allow inbound traffic to Elasticsearch domain from Lambda Elasticsearch cleanup SG"
type = "ingress"
from_port = 443
to_port = 443
protocol = "tcp"
source_security_group_id = join("", aws_security_group.default[*].id)
security_group_id = var.es_security_group_id
}
resource "aws_iam_role" "default" {
count = local.enabled ? 1 : 0
name = local.function_name
assume_role_policy = join("", data.aws_iam_policy_document.assume_role[*].json)
tags = module.label.tags
}
resource "aws_iam_role_policy" "default" {
count = local.enabled ? 1 : 0
name = local.function_name
role = join("", aws_iam_role.default[*].name)
policy = join("", data.aws_iam_policy_document.default[*].json)
}
resource "aws_iam_role_policy_attachment" "default" {
count = local.enabled ? 1 : 0
role = join("", aws_iam_role.default[*].name)
policy_arn = "arn:aws:iam::aws:policy/service-role/AWSLambdaVPCAccessExecutionRole"
}
resource "aws_cloudwatch_event_rule" "default" {
count = local.enabled ? 1 : 0
name = local.function_name
description = local.function_name
schedule_expression = var.schedule
}
resource "aws_lambda_permission" "default" {
count = local.enabled ? 1 : 0
statement_id = "AllowExecutionFromCloudWatch"
action = "lambda:InvokeFunction"
function_name = join("", aws_lambda_function.default[*].arn)
principal = "events.amazonaws.com"
source_arn = join("", aws_cloudwatch_event_rule.default[*].arn)
}
resource "aws_cloudwatch_event_target" "default" {
count = local.enabled ? 1 : 0
target_id = local.function_name
rule = join("", aws_cloudwatch_event_rule.default[*].name)
arn = join("", aws_lambda_function.default[*].arn)
}