Skip to content

Commit 901d360

Browse files
committed
fix: correct default terminate lambda handler value
1 parent 7055077 commit 901d360

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/terminate-agent-hook/locals.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
locals {
2-
original_lambda_handler = "lambda_function.handler"
2+
original_lambda_handler = "terminate_runners.handler"
33
lambda_handler = var.lambda_handler != null ? var.lambda_handler : local.original_lambda_handler
44

55
replaced_environment_variables = { for key, value in var.environment_variables : key => replace(value, "{HANDLER}", local.original_lambda_handler) }

0 commit comments

Comments
 (0)