File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
infrastructure/terraform/components/api Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,8 @@ data "aws_iam_policy_document" "api_gateway_execution_policy" {
5050 resources = [
5151 module . authorizer_lambda . function_arn ,
5252 module . get_letters . function_arn ,
53- module . patch_letter . function_arn
53+ module . patch_letter . function_arn ,
54+ module . get_letter_data . function_arn
5455 ]
5556 }
5657}
Original file line number Diff line number Diff line change 99 AWS_REGION = var.region
1010 AUTHORIZER_LAMBDA_ARN = module.authorizer_lambda.function_arn
1111 GET_LETTERS_LAMBDA_ARN = module.get_letters.function_arn
12- GET_LETTER_DATA_LAMBDA_ARN = module.get_letters .function_arn
12+ GET_LETTER_DATA_LAMBDA_ARN = module.get_letter_data .function_arn
1313 PATCH_LETTER_LAMBDA_ARN = module.patch_letter.function_arn
1414 })
1515
You can’t perform that action at this time.
0 commit comments