35 lines
955 B
Terraform
35 lines
955 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 = aws_s3_bucket.quantum_artifacts.bucket
|
|
}
|
|
|
|
output "quantum_queue_url" {
|
|
description = "Main SQS queue URL."
|
|
value = aws_sqs_queue.quantum_events.url
|
|
}
|
|
|
|
output "quantum_dlq_url" {
|
|
description = "DLQ URL."
|
|
value = aws_sqs_queue.quantum_dlq.url
|
|
}
|
|
|
|
output "quantum_lambda_name" {
|
|
description = "Processor Lambda function name."
|
|
value = aws_lambda_function.quantum_processor.function_name
|
|
}
|
|
|
|
output "quantum_log_group_name" {
|
|
description = "CloudWatch Log Group for the Lambda function."
|
|
value = aws_cloudwatch_log_group.quantum_lambda.name
|
|
}
|
|
|
|
output "quantum_secret_name" {
|
|
description = "Secrets Manager secret name."
|
|
value = aws_secretsmanager_secret.quantum_app.name
|
|
}
|