Skip to content

Commit

Permalink
update lambda handler
Browse files Browse the repository at this point in the history
  • Loading branch information
timburke-hackit committed Oct 31, 2023
1 parent 3e10d02 commit d18bc5d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions terraform/modules/rds-snapshot-to-s3/lambda.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module "trigger_rds_snapshot_export" {
source = "../aws-lambda"
lambda_name = "export-rds-snapshot-to-s3"
runtime = "python3.9"
handler = "lambda_function.lambda_handler"
handler = "main.lambda_handler"
lambda_artefact_storage_bucket = var.lambda_artefact_storage_bucket
lambda_source_dir = "../../lambdas/export_rds_snapshot_to_s3"
lambda_output_path = "../../lambdas/export-rds-snapshot-to-s3.zip"
Expand All @@ -20,7 +20,7 @@ module "rds_snapshot_s3_to_s3_copier" {
source = "../aws-lambda"
lambda_name = "rds-export-s3-to-s3-copier"
runtime = "python3.9"
handler = "lambda_function.lambda_handler"
handler = "main.lambda_handler"
lambda_artefact_storage_bucket = var.lambda_artefact_storage_bucket
lambda_source_dir = "../../lambdas/rds_snapshot_export_s3_to_s3_copier"
lambda_output_path = "../../lambdas/rds_snapshot_export_s3_to_s3_copier.zip"
Expand Down

0 comments on commit d18bc5d

Please sign in to comment.