mail: upgrade NodeJS from 12.x to 14.x

The 12.x version has become deprecated:
https://docs.aws.amazon.com/lambda/latest/dg/runtime-support-policy.html

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2022-09-19 12:14:55 +02:00
parent 2b72bf5f91
commit 2613f37178
No known key found for this signature in database
GPG Key ID: 09AA5403E54D9931
1 changed files with 1 additions and 1 deletions

View File

@ -107,7 +107,7 @@ resource "aws_lambda_function" "ses_forwarder" {
function_name = "SesForwarder"
role = aws_iam_role.ses_lambda_role.arn
handler = "index.handler"
runtime = "nodejs12.x"
runtime = "nodejs14.x"
memory_size = 128
timeout = 10
}