Skip to content

Commit a866b9c

Browse files
authored
[NDR-215] enable post and get fhir in all env (#398)
1 parent 033ff06 commit a866b9c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

infrastructure/lambda-post-document-fhir.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module "post-document-references-fhir-lambda" {
2-
count = local.is_production ? 0 : 1
2+
count = 1
33
source = "./modules/lambda"
44
name = "PostDocumentReferencesFHIR"
55
handler = "handlers.post_fhir_document_reference_handler.lambda_handler"

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module "search-document-references-fhir-lambda" {
2-
count = local.is_production ? 0 : 1
2+
count = 1
33
source = "./modules/lambda"
44
name = "SearchDocumentReferencesFHIR"
55
handler = "handlers.fhir_document_reference_search_handler.lambda_handler"

0 commit comments

Comments
 (0)