35 lines
920 B
Terraform
35 lines
920 B
Terraform
output "localstack_endpoint" {
|
|
description = "LocalStack endpoint used by the provider."
|
|
value = var.localstack_endpoint
|
|
}
|
|
|
|
output "quantum_bucket_name" {
|
|
description = "S3 bucket for the Quantum application."
|
|
value = module.quantum.quantum_bucket_name
|
|
}
|
|
|
|
output "quantum_queue_url" {
|
|
description = "Main SQS queue URL."
|
|
value = module.quantum.quantum_queue_url
|
|
}
|
|
|
|
output "quantum_dlq_url" {
|
|
description = "DLQ URL."
|
|
value = module.quantum.quantum_dlq_url
|
|
}
|
|
|
|
output "quantum_lambda_name" {
|
|
description = "Processor Lambda function name."
|
|
value = module.quantum.quantum_lambda_name
|
|
}
|
|
|
|
output "quantum_log_group_name" {
|
|
description = "CloudWatch Log Group for the Lambda function."
|
|
value = module.quantum.quantum_log_group_name
|
|
}
|
|
|
|
output "quantum_secret_name" {
|
|
description = "Secrets Manager secret name."
|
|
value = module.quantum.quantum_secret_name
|
|
}
|