Skip to content

Commit d117dd5

Browse files
[PRMP-586] add lambda handlers to new lambdas:
1 parent 38e22a9 commit d117dd5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

infrastructure/lambda-get-document-review.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module "get-document-review-lambda" {
22
source = "./modules/lambda"
33
name = "GetDocumentReview"
4-
handler = ""
4+
handler = "handlers.get_document_review_handler.lambda_handler"
55
iam_role_policy_documents = [
66
module.ndr-app-config.app_config_policy,
77
]

infrastructure/lambda-put-document-review.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module "put-document-review-lambda" {
22
source = "./modules/lambda"
33
name = "PutDocumentReview"
4-
handler = ""
4+
handler = "handlers.put_document_review_handler.lambda_handler"
55
iam_role_policy_documents = [
66
module.ndr-app-config.app_config_policy,
77
]

infrastructure/lambda-search-document-review.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module "search-document-review-lambda" {
22
source = "./modules/lambda"
33
name = "SearchDocumentReview"
4-
handler = ""
4+
handler = "handlers.search_document_review_handler.lambda_handler"
55
iam_role_policy_documents = [
66
module.ndr-app-config.app_config_policy,
77
]

0 commit comments

Comments
 (0)