-
Notifications
You must be signed in to change notification settings - Fork 1
/
outputs.tf
39 lines (32 loc) · 934 Bytes
/
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
output "service_name" {
value = module.service.service_name
description = "ECS Service name"
}
output "service_arn" {
value = module.service.service_arn
description = "ECS Service ARN"
}
output "url" {
value = local.url
description = "Full URL of the app"
}
output "task_definition_family" {
value = module.service.task_definition_family
description = "ECS task definition family"
}
output "alb_listener_arns" {
description = "The ARN of the ALB listeners."
value = aws_lb_listener.app.*.arn
}
output "ecs_service_security_group_id" {
description = "The ID of the Security Group for the ECS service."
value = module.ecs_service_sg.id
}
output "task_exec_role_arn" {
value = module.service.task_exec_role_arn
description = "ECS Task exec role ARN"
}
output "task_role_arn" {
value = module.service.task_role_arn
description = "ECS Task role ARN"
}