Merge pull request #829 from Hestia-Homes/deploy-fastapi-with-terraform

Deploy fastapi with terraform: Fix typos
This commit is contained in:
Daniel Roth 2026-03-11 11:56:32 +00:00 committed by GitHub
commit 2fb9bb7d2e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View file

@ -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"
}

View file

@ -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"
}

View file

@ -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"