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
+2 -2
View File
@@ -111,7 +111,7 @@ resource "aws_iam_role" "quantum_lambda" {
resource "aws_iam_policy" "quantum_lambda" {
name = "${local.name_prefix}-lambda-policy"
description = "Permissoes simuladas da Lambda Quantum no LocalStack."
description = "Simulated permissions for the Quantum Lambda function on LocalStack."
policy = jsonencode({
Version = "2012-10-17"
@@ -173,7 +173,7 @@ resource "aws_cloudwatch_log_group" "quantum_lambda" {
resource "aws_lambda_function" "quantum_processor" {
function_name = "${local.name_prefix}-processor"
description = "Processador ficticio de eventos da aplicacao Quantum."
description = "Fictional event processor for the Quantum application."
role = aws_iam_role.quantum_lambda.arn
runtime = "python3.11"
handler = "handler.lambda_handler"