generated from geekcell/terraform-aws-module-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
44 lines (36 loc) · 1.11 KB
/
outputs.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
output "alb_dns_name" {
value = module.alb.dns_name
description = "Public address of ALB."
}
output "security_group_id" {
value = module.ecs_security_group.security_group_id
description = "Security group assigned to the service."
}
output "ecr_repository_name" {
value = module.ecr_repository.name
description = "Name of the ECR repository."
}
output "cluster_name" {
value = module.ecs_cluster.name
description = "Name of the ECS cluster."
}
output "service_name" {
value = aws_ecs_service.main.name
description = "Name of the ECS service."
}
output "task_role_name" {
value = module.ecs_task_definition.task_role_name
description = "Name of the task role."
}
output "task_role_arn" {
value = module.ecs_task_definition.task_role_arn
description = "ARN of the task role."
}
output "execution_role_name" {
value = module.ecs_task_definition.execution_role_name
description = "Name of the execution role."
}
output "execution_role_arn" {
value = module.ecs_task_definition.execution_role_arn
description = "ARN of the execution role."
}