Skip to content

Commit 865ac4c

Browse files
committed
NDR-213 tf fmt
1 parent 3518e49 commit 865ac4c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

infrastructure/lambda-get-document-fhir.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ resource "aws_api_gateway_integration" "get_doc_fhir_lambda_integration" {
7878
resource "aws_lambda_permission" "lambda_permission_get_mtls_api" {
7979
statement_id = "AllowAPIGatewayInvoke"
8080
action = "lambda:InvokeFunction"
81-
function_name = module.get-doc-fhir-lambda[0].lambda_arn
81+
function_name = module.get-doc-fhir-lambda[0].lambda_arn
8282
principal = "apigateway.amazonaws.com"
8383
# The "/*/*" portion grants access from any method on any resource
8484
# within the API Gateway REST API.

infrastructure/lambda-post-document-fhir.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ resource "aws_api_gateway_integration" "post_doc_fhir_lambda_integration" {
4141
resource "aws_lambda_permission" "lambda_permission_post_mtls_api" {
4242
statement_id = "AllowAPIGatewayInvoke"
4343
action = "lambda:InvokeFunction"
44-
function_name = module.post-document-references-fhir-lambda[0].lambda_arn
44+
function_name = module.post-document-references-fhir-lambda[0].lambda_arn
4545
principal = "apigateway.amazonaws.com"
4646
# The "/*/*" portion grants access from any method on any resource
4747
# within the API Gateway REST API.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ resource "aws_api_gateway_integration" "search_doc_fhir_lambda_integration" {
4444
resource "aws_lambda_permission" "lambda_permission_search_mtls_api" {
4545
statement_id = "AllowAPIGatewayInvoke"
4646
action = "lambda:InvokeFunction"
47-
function_name = module.search-document-references-fhir-lambda[0].lambda_arn
47+
function_name = module.search-document-references-fhir-lambda[0].lambda_arn
4848
principal = "apigateway.amazonaws.com"
4949
# The "/*/*" portion grants access from any method on any resource
5050
# within the API Gateway REST API.

0 commit comments

Comments
 (0)