Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion infra/terraform/envs/production/response.json

This file was deleted.

2 changes: 1 addition & 1 deletion infra/terraform/modules/platform_stack/lambda.tf
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ resource "aws_lambda_function" "scheduled_cost_sync" {
function_name = "${var.name_prefix}-scheduled-cost-sync"
role = aws_iam_role.scheduled_sync_lambda.arn
runtime = "nodejs22.x"
handler = "dist/jobs/scheduled-cost-sync.lambda.handler"
handler = "dist/jobs/scheduled-cost-sync-handler.handler"
filename = data.archive_file.scheduled_cost_sync.output_path
source_code_hash = data.archive_file.scheduled_cost_sync.output_base64sha256
timeout = 900
Expand Down
Loading