Model/deployment/terraform/lambda/address2UPRN/outputs.tf
2026-05-19 16:35:09 +00:00

14 lines
412 B
HCL

output "address2uprn_queue_url" {
value = module.address2uprn.queue_url
description = "URL of the address2UPRN SQS queue"
}
output "address2uprn_queue_arn" {
value = module.address2uprn.queue_arn
description = "ARN of the address2UPRN SQS queue"
}
output "address2uprn_lambda_arn" {
value = module.address2uprn.lambda_arn
description = "ARN of the address2UPRN Lambda function"
}