Model/deployment/terraform/lambda/ara_export/outputs.tf
Khalim Conn-Kowlessar 30c7133b9a Add ara_export Lambda + SQS terraform module 🟩
Self-contained root module mirroring bulk_document_download (4GB memory per
ADR-0065, exports-bucket-only IAM). Cross-module wiring (shared ECR/state,
fast-api remote_state + ARA_EXPORT_SQS_URL env, CI image build) still needs a
terraform plan review — unverifiable in this environment.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-07-14 09:38:07 +00:00

9 lines
278 B
HCL

output "ara_export_queue_url" {
value = module.lambda.queue_url
description = "URL of the ara-export SQS queue (FastAPI enqueues jobs here)"
}
output "ara_export_queue_arn" {
value = module.lambda.queue_arn
description = "ARN of the ara-export SQS queue"
}