We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d53900 commit 4334697Copy full SHA for 4334697
2 files changed
infrastructure/terraform/components/api/module_lambda_upsert_letter.tf
@@ -1,7 +1,7 @@
1
module "upsert_letter" {
2
source = "https://github.com/NHSDigital/nhs-notify-shared-modules/releases/download/v2.0.26/terraform-lambda.zip"
3
4
- function_name = "upsert-letter"
+ function_name = "upsert_letter"
5
description = "Update or Insert the letter data in the letters table"
6
7
aws_account_id = var.aws_account_id
lambdas/upsert-letter/src/index.ts
@@ -3,5 +3,5 @@ import createUpsertLetterHandler from "./handler/upsert-handler";
const container = createDependenciesContainer();
-const upsertLetterHandler = createUpsertLetterHandler(container);
+export const upsertLetterHandler = createUpsertLetterHandler(container);
export default upsertLetterHandler;
0 commit comments