From 496ec22705e46a3c377a1fd3e619e8f9c4ec875b Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Wed, 11 Mar 2026 11:49:27 +0000 Subject: [PATCH] fix typos --- infrastructure/terraform/lambda/categorisation/outputs.tf | 2 +- infrastructure/terraform/lambda/engine/outputs.tf | 2 +- infrastructure/terraform/lambda/fast-api/main.tf | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/infrastructure/terraform/lambda/categorisation/outputs.tf b/infrastructure/terraform/lambda/categorisation/outputs.tf index be1ac118..06e06623 100644 --- a/infrastructure/terraform/lambda/categorisation/outputs.tf +++ b/infrastructure/terraform/lambda/categorisation/outputs.tf @@ -1,5 +1,5 @@ output "categorisation_queue_url" { - value = module.lambda.queu_url + value = module.lambda.queue_url description = "URL of the Categorisation SQS queue" } diff --git a/infrastructure/terraform/lambda/engine/outputs.tf b/infrastructure/terraform/lambda/engine/outputs.tf index bba2046b..d12e0684 100644 --- a/infrastructure/terraform/lambda/engine/outputs.tf +++ b/infrastructure/terraform/lambda/engine/outputs.tf @@ -1,5 +1,5 @@ output "ara_engine_queue_url" { - value = module.lambda.queu_url + value = module.lambda.queue_url description = "URL of the Engine SQS queue" } diff --git a/infrastructure/terraform/lambda/fast-api/main.tf b/infrastructure/terraform/lambda/fast-api/main.tf index 0a40b14c..0449b33d 100644 --- a/infrastructure/terraform/lambda/fast-api/main.tf +++ b/infrastructure/terraform/lambda/fast-api/main.tf @@ -124,7 +124,7 @@ resource "aws_iam_role_policy_attachment" "fast_api_s3_read" { } module "fastapi_sqs_policy" { - source = "../../modules/generic_iam_policy" + source = "../../modules/general_iam_policy" policy_name = "fastapi-sqs-send-${var.stage}" policy_description = "Allow FastAPI to send messages to engine & categorisation queues"