forked from newrelic/aws-log-ingestion
-
Notifications
You must be signed in to change notification settings - Fork 1
/
terraform.tf
218 lines (182 loc) · 5.95 KB
/
terraform.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
terraform {
required_version = ">= 0.14, < 2.0"
}
variable "service_name" {
type = string
description = "The name of the lambda function and related resources"
default = "newrelic-log-ingestion"
}
variable "nr_license_key" {
type = string
description = "Your NewRelic license key."
sensitive = true
}
variable "nr_logging_enabled" {
type = bool
description = "Determines if logs are forwarded to New Relic Logging"
default = false
}
variable "nr_infra_logging" {
type = bool
description = "Determines if logs are forwarded to New Relic Infrastructure"
default = true
}
variable "nr_tags" {
type = string
description = "Additional tags added to the logs"
sensitive = false
}
variable "lambda_archive" {
type = string
description = "The path to the lambda archive, the lambda will be build here if the build_lambda variable is true."
default = "temp/newrelic-log-ingestion.zip"
}
variable "build_lambda" {
type = bool
description = "Build the Lambda with Docker?"
default = true
}
variable "lambda_image_name" {
type = string
description = "Created temporary docker image name. Might need to specify if using the module more than once."
default = "newrelic-log-ingestion"
}
variable "memory_size" {
type = number
description = "Memory size for the New Relic Log Ingestion Lambda function"
default = 128
}
variable "timeout" {
type = number
description = "Timeout for the New Relic Log Ingestion Lambda function"
default = 30
}
variable "function_role" {
type = string
description = "IAM Role name that this function will assume. Should provide the AWSLambdaBasicExecutionRole policy. If not specified, an appropriate Role will be created."
default = null
}
variable "permissions_boundary" {
type = string
description = "IAM Role Permissions Boundary (optional)"
default = null
}
variable "lambda_log_retention_in_days" {
type = number
description = "Number of days to keep logs from the lambda for"
default = 7
}
variable "tags" {
type = map(string)
description = "Tags to add to the resources created"
default = {}
}
data "aws_caller_identity" "current" {}
data "aws_partition" "current" {}
data "aws_region" "current" {}
locals {
aws_account_id = data.aws_caller_identity.current.account_id
aws_partition = data.aws_partition.current.partition
aws_region = data.aws_region.current.name
archive_name = var.lambda_archive
archive_folder = dirname(local.archive_name)
tags = merge(
var.tags,
{ "lambda:createdBy" = "Terraform" }
)
}
data "aws_iam_policy_document" "lambda_assume_policy" {
statement {
actions = [
"sts:AssumeRole"
]
effect = "Allow"
principals {
type = "Service"
identifiers = ["lambda.amazonaws.com"]
}
}
}
resource "aws_iam_role" "lambda_role" {
count = var.function_role == null ? 1 : 0
name = var.service_name
assume_role_policy = data.aws_iam_policy_document.lambda_assume_policy.json
permissions_boundary = var.permissions_boundary
tags = local.tags
}
resource "aws_iam_role_policy_attachment" "lambda_log_policy" {
count = var.function_role == null ? 1 : 0
role = aws_iam_role.lambda_role.0.name
policy_arn = "arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole"
}
resource "aws_cloudwatch_log_group" "lambda_logs" {
name = "/aws/lambda/${var.service_name}"
retention_in_days = var.lambda_log_retention_in_days
tags = local.tags
}
resource "null_resource" "build_lambda" {
count = var.build_lambda ? 1 : 0
// Depends on log group, just in case this is created in a brand new AWS Subaccount, and it doesn't have subscriptions yet.
depends_on = [aws_cloudwatch_log_group.lambda_logs]
provisioner "local-exec" {
// OS Agnostic folder creation.
command = (local.archive_folder != "."
? "mkdir ${local.archive_folder} || mkdir -p ${local.archive_folder}"
: "echo Folder Exists"
)
on_failure = continue
}
provisioner "local-exec" {
command = "docker build -t ${var.lambda_image_name} --network host ."
working_dir = path.module
}
provisioner "local-exec" {
command = "docker run --rm --entrypoint cat ${var.lambda_image_name} /out.zip > ${abspath(local.archive_name)}"
working_dir = path.module
}
provisioner "local-exec" {
command = "docker image rm ${var.lambda_image_name}"
on_failure = continue
}
}
resource "aws_lambda_function" "ingestion_function" {
depends_on = [
aws_iam_role.lambda_role,
aws_cloudwatch_log_group.lambda_logs,
null_resource.build_lambda,
]
function_name = var.service_name
description = "Sends log data from CloudWatch Logs to New Relic Infrastructure (Cloud integrations) and New Relic Logging"
role = (var.function_role != null
? var.function_role
: aws_iam_role.lambda_role.0.arn
)
runtime = "python3.11"
filename = local.archive_name
handler = "function.lambda_handler"
memory_size = var.memory_size
timeout = var.timeout
environment {
variables = {
LICENSE_KEY = var.nr_license_key
LOGGING_ENABLED = var.nr_logging_enabled ? "True" : "False"
INFRA_ENABLED = var.nr_infra_logging ? "True" : "False"
NR_TAGS = var.nr_tags
}
}
tags = local.tags
}
resource "aws_lambda_permission" "log_invoke_permission" {
action = "lambda:InvokeFunction"
function_name = aws_lambda_function.ingestion_function.function_name
principal = "logs.${local.aws_region}.amazonaws.com"
source_arn = "arn:${local.aws_partition}:logs:${local.aws_region}:${local.aws_account_id}:log-group:*"
}
output "function_arn" {
value = aws_lambda_function.ingestion_function.arn
description = "Log ingestion lambda function ARN"
}
output "lambda_archive" {
depends_on = [null_resource.build_lambda]
value = local.archive_name
}