Skip to content

Commit d3fc8a1

Browse files
committed
Rename files
1 parent 70a878d commit d3fc8a1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

infrastructure/lambda-get-document-fhir.tf renamed to infrastructure/lambda-get-document-reference-fhir.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ resource "aws_api_gateway_method" "get_document_reference_mtls" {
1919
module "get_document_reference_lambda" {
2020
source = "./modules/lambda"
2121
name = "GetDocumentReference"
22-
handler = "handlers.get_document_reference_handler_fhir.lambda_handler"
22+
handler = "handlers.get_document_reference_fhir_handler.lambda_handler"
2323
iam_role_policy_documents = [
2424
module.ndr-app-config.app_config_policy,
2525
module.lloyd_george_reference_dynamodb_table.dynamodb_read_policy_document,

infrastructure/lambda-post-document-fhir.tf renamed to infrastructure/lambda-post-document-reference-fhir.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module "post_document_references_lambda" {
22
source = "./modules/lambda"
33
name = "PostDocumentReferences"
4-
handler = "handlers.post_document_reference_handler_fhir.lambda_handler"
4+
handler = "handlers.post_document_reference_fhir_handler.lambda_handler"
55
iam_role_policy_documents = [
66
module.document_reference_dynamodb_table.dynamodb_write_policy_document,
77
module.lloyd_george_reference_dynamodb_table.dynamodb_write_policy_document,

infrastructure/lambda-search-document-references-fhir.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module "search_document_references_lambda" {
22
source = "./modules/lambda"
33
name = "SearchDocumentReferences"
4-
handler = "handlers.search_document_reference_handler_fhir.lambda_handler"
4+
handler = "handlers.search_document_reference_fhir_handler.lambda_handler"
55
iam_role_policy_documents = [
66
module.document_reference_dynamodb_table.dynamodb_read_policy_document,
77
module.document_reference_dynamodb_table.dynamodb_write_policy_document,

0 commit comments

Comments
 (0)