Skip to content

Commit f1cc3e1

Browse files
committed
Merge branch 'comment-out-outputs' into comment-out-dev-environment
2 parents 50b53c0 + a7ee729 commit f1cc3e1

File tree

1 file changed

+81
-81
lines changed

1 file changed

+81
-81
lines changed

terraform/env/dev/outputs.tf

Lines changed: 81 additions & 81 deletions
Original file line numberDiff line numberDiff line change
@@ -1,87 +1,87 @@
11
# Outputs principais do Terraform
22

33
# Informações das tabelas de certificados
4-
output "certificates_table_name" {
5-
description = "Nome da tabela de certificados"
6-
value = module.certificates_table.table_name
7-
}
8-
9-
output "certificates_table_arn" {
10-
description = "ARN da tabela de certificados"
11-
value = module.certificates_table.table_arn
12-
}
13-
14-
# Informações das tabelas de pedidos
15-
output "orders_table_name" {
16-
description = "Nome da tabela de pedidos"
17-
value = module.orders_table.table_name
18-
}
19-
20-
output "orders_table_arn" {
21-
description = "ARN da tabela de pedidos"
22-
value = module.orders_table.table_arn
23-
}
24-
25-
# Informações das tabelas de participantes
26-
output "participants_table_name" {
27-
description = "Nome da tabela de participantes"
28-
value = module.participants_table.table_name
29-
}
30-
31-
output "participants_table_arn" {
32-
description = "ARN da tabela de participantes"
33-
value = module.participants_table.table_arn
34-
}
35-
36-
# Informações das tabelas de produtos
37-
output "products_table_name" {
38-
description = "Nome da tabela de produtos"
39-
value = module.products_table.table_name
40-
}
41-
42-
output "products_table_arn" {
43-
description = "ARN da tabela de produtos"
44-
value = module.products_table.table_arn
45-
}
46-
47-
48-
# # Informações do SQS
49-
# output "sqs_queue_url" {
50-
# description = "URL da fila SQS principal"
51-
# value = module.sqs.queue_url
52-
# }
53-
54-
# output "sqs_queue_arn" {
55-
# description = "ARN da fila SQS principal"
56-
# value = module.sqs.queue_arn
57-
# }
58-
59-
# output "sqs_dlq_url" {
60-
# description = "URL da Dead Letter Queue (builder)"
61-
# value = module.sqs.builder_dlq_url
62-
# }
63-
64-
# Informações do ECR
65-
output "ecr_repository_url" {
66-
description = "URL do repositório ECR"
67-
value = module.ecr.api_repository_url
68-
}
69-
70-
output "ecr_api_repository_name" {
71-
description = "Nome do repositório ECR"
72-
value = module.ecr.api_repository_name
73-
}
74-
75-
#informações do s3
76-
output "s3_bucket_name" {
77-
description = "Nome do bucket S3"
78-
value = module.s3.bucket_name
79-
}
80-
81-
output "s3_bucket_arn" {
82-
description = "ARN do bucket S3"
83-
value = module.s3.bucket_arn
84-
}
4+
# output "certificates_table_name" {
5+
# description = "Nome da tabela de certificados"
6+
# value = module.certificates_table.table_name
7+
# }
8+
9+
# output "certificates_table_arn" {
10+
# description = "ARN da tabela de certificados"
11+
# value = module.certificates_table.table_arn
12+
# }
13+
14+
# # Informações das tabelas de pedidos
15+
# output "orders_table_name" {
16+
# description = "Nome da tabela de pedidos"
17+
# value = module.orders_table.table_name
18+
# }
19+
20+
# output "orders_table_arn" {
21+
# description = "ARN da tabela de pedidos"
22+
# value = module.orders_table.table_arn
23+
# }
24+
25+
# # Informações das tabelas de participantes
26+
# output "participants_table_name" {
27+
# description = "Nome da tabela de participantes"
28+
# value = module.participants_table.table_name
29+
# }
30+
31+
# output "participants_table_arn" {
32+
# description = "ARN da tabela de participantes"
33+
# value = module.participants_table.table_arn
34+
# }
35+
36+
# # Informações das tabelas de produtos
37+
# output "products_table_name" {
38+
# description = "Nome da tabela de produtos"
39+
# value = module.products_table.table_name
40+
# }
41+
42+
# output "products_table_arn" {
43+
# description = "ARN da tabela de produtos"
44+
# value = module.products_table.table_arn
45+
# }
46+
47+
48+
# # # Informações do SQS
49+
# # output "sqs_queue_url" {
50+
# # description = "URL da fila SQS principal"
51+
# # value = module.sqs.queue_url
52+
# # }
53+
54+
# # output "sqs_queue_arn" {
55+
# # description = "ARN da fila SQS principal"
56+
# # value = module.sqs.queue_arn
57+
# # }
58+
59+
# # output "sqs_dlq_url" {
60+
# # description = "URL da Dead Letter Queue (builder)"
61+
# # value = module.sqs.builder_dlq_url
62+
# # }
63+
64+
# # Informações do ECR
65+
# output "ecr_repository_url" {
66+
# description = "URL do repositório ECR"
67+
# value = module.ecr.api_repository_url
68+
# }
69+
70+
# output "ecr_api_repository_name" {
71+
# description = "Nome do repositório ECR"
72+
# value = module.ecr.api_repository_name
73+
# }
74+
75+
# #informações do s3
76+
# output "s3_bucket_name" {
77+
# description = "Nome do bucket S3"
78+
# value = module.s3.bucket_name
79+
# }
80+
81+
# output "s3_bucket_arn" {
82+
# description = "ARN do bucket S3"
83+
# value = module.s3.bucket_arn
84+
# }
8585

8686
## Informações do Lambda
8787
# output "lambda_function_name" {

0 commit comments

Comments
 (0)