Skip to content

Commit e126397

Browse files
fix handlers
1 parent 2f9e1c5 commit e126397

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

infrastructure/terraform/components/api/module_lambda_get_letters.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ module "get_letters" {
2222
function_code_base_path = local.aws_lambda_functions_dir_path
2323
function_code_dir = "api-handler/dist"
2424
function_include_common = true
25-
handler_function_name = "index.getLetters"
25+
handler_function_name = "getLetters"
2626
runtime = "nodejs22.x"
2727
memory = 128
2828
timeout = 5

infrastructure/terraform/components/api/module_lambda_hello_world.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ module "hello_world" {
2222
function_code_base_path = local.aws_lambda_functions_dir_path
2323
function_code_dir = "api-handler/dist"
2424
function_include_common = true
25-
handler_function_name = "index.helloWorld"
25+
handler_function_name = "helloWorld"
2626
runtime = "nodejs22.x"
2727
memory = 128
2828
timeout = 5

0 commit comments

Comments
 (0)