Skip to content

Commit

Permalink
Merge pull request #12 from clburlison/upgrade-lambda-nodejs
Browse files Browse the repository at this point in the history
feat: Upgraded Lamda to Node 20+
  • Loading branch information
ianuriegas authored Aug 9, 2024
2 parents f6db440 + db3cfb2 commit 30bce65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lambda.tf
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ resource "aws_lambda_function" "basic_auth_lambda" {
function_name = "${var.name}_basic_auth"
role = aws_iam_role.lambda_execution_role[0].arn
handler = "index.handler"
runtime = "nodejs16.x"
runtime = "nodejs20.x"
timeout = "2"
description = "Protect munki resources via basic auth."
publish = true
Expand Down

0 comments on commit 30bce65

Please sign in to comment.