Skip to content

Commit 8dd993a

Browse files
committed
review: update lambda engine version nodejs18.x -> nodejs22.x
1 parent e91dc69 commit 8dd993a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

modules/oidc/callback.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ resource "aws_lambda_function" "oidc_callback" {
1111
function_name = "${var.project_name}-oidc-callback"
1212
role = aws_iam_role.lambda_oidc[0].arn
1313
handler = "index.handler"
14-
runtime = "nodejs18.x"
14+
runtime = "nodejs22.x"
1515
filename = data.archive_file.callback_lambda_zip[0].output_path
1616
source_code_hash = data.archive_file.callback_lambda_zip[0].output_base64sha256
1717
publish = true

modules/oidc/edge.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ resource "aws_lambda_function" "edge_auth" {
2121
function_name = "${var.project_name}-oidc-auth"
2222
role = aws_iam_role.lambda_oidc[0].arn
2323
handler = "index.handler"
24-
runtime = "nodejs18.x"
24+
runtime = "nodejs22.x"
2525
filename = data.archive_file.edge_lambda_zip[0].output_path
2626
source_code_hash = data.archive_file.edge_lambda_zip[0].output_base64sha256
2727
publish = true

0 commit comments

Comments
 (0)