From 5a5eff0c9fbbc211ec1afbbc0d19f585b6f44a08 Mon Sep 17 00:00:00 2001 From: David Date: Thu, 25 Feb 2021 11:07:04 -0800 Subject: [PATCH] feat: upgrade to Node 14 12 is no longer in active LTS, 14 is. Suggesting this move forward so as to support next LTS --- main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.tf b/main.tf index b087fc9..174f2be 100644 --- a/main.tf +++ b/main.tf @@ -38,7 +38,7 @@ resource "aws_lambda_function" "edge" { handler = "index.handler" publish = true role = "${aws_iam_role.edge.arn}" - runtime = "nodejs12.x" + runtime = "nodejs14.x" source_code_hash = "${data.archive_file.lambda.output_base64sha256}" timeout = 10 }