Translate project documentation to English

This commit is contained in:
2026-04-20 16:50:39 -03:00
parent 248fd37942
commit 707852bb3a
4 changed files with 38 additions and 38 deletions
+7 -7
View File
@@ -1,34 +1,34 @@
output "localstack_endpoint" {
description = "Endpoint LocalStack usado pelo provider."
description = "LocalStack endpoint used by the provider."
value = var.localstack_endpoint
}
output "quantum_bucket_name" {
description = "Bucket S3 da aplicacao Quantum."
description = "S3 bucket for the Quantum application."
value = aws_s3_bucket.quantum_artifacts.bucket
}
output "quantum_queue_url" {
description = "URL da fila SQS principal."
description = "Main SQS queue URL."
value = aws_sqs_queue.quantum_events.url
}
output "quantum_dlq_url" {
description = "URL da fila DLQ."
description = "DLQ URL."
value = aws_sqs_queue.quantum_dlq.url
}
output "quantum_lambda_name" {
description = "Nome da Lambda processadora."
description = "Processor Lambda function name."
value = aws_lambda_function.quantum_processor.function_name
}
output "quantum_log_group_name" {
description = "Log Group CloudWatch da Lambda."
description = "CloudWatch Log Group for the Lambda function."
value = aws_cloudwatch_log_group.quantum_lambda.name
}
output "quantum_secret_name" {
description = "Nome do segredo no Secrets Manager."
description = "Secrets Manager secret name."
value = aws_secretsmanager_secret.quantum_app.name
}