We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c04f77d commit 486285eCopy full SHA for 486285e
1 file changed
terraform/redis_sync_lambda.tf
@@ -22,7 +22,7 @@ data "archive_file" "redis_sync_lambda_zip" {
22
resource "aws_lambda_function" "redis_sync_lambda" {
23
function_name = "${local.short_prefix}-redis-sync-lambda"
24
role = aws_iam_role.redis_sync_lambda_exec_role.arn
25
- handler = "redis_sync_handler.sync_handler" # Update as appropriate
+ handler = "redis_sync.sync_handler" # Update as appropriate
26
runtime = "python3.11"
27
filename = data.archive_file.redis_sync_lambda_zip.output_path
28
source_code_hash = data.archive_file.redis_sync_lambda_zip.output_base64sha256
0 commit comments