Skip to content

Commit

Permalink
Update Lambda node version
Browse files Browse the repository at this point in the history
  • Loading branch information
xsalazar committed Dec 17, 2024
1 parent 5df6e7a commit d79ceae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion terraform/lambda.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ resource "aws_lambda_function" "instance" {
filename = "${path.module}/dummy-lambda-package/lambda.zip" // Simple hello world application
role = aws_iam_role.instance.arn
handler = "app.handler"
runtime = "nodejs18.x"
runtime = "nodejs20.x"
timeout = 60 // seconds
memory_size = 1024 // MB

Expand Down

0 comments on commit d79ceae

Please sign in to comment.