-
Notifications
You must be signed in to change notification settings - Fork 40
/
outputs.tf
43 lines (33 loc) · 950 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
40
41
42
43
output "ecs_taskrole_arn" {
value = "${module.iam.ecs_taskrole_arn}"
}
output "ecs_taskrole_name" {
value = "${module.iam.ecs_taskrole_name}"
}
output "lb_target_group_arn" {
value = "${module.lb_handling.lb_target_group_arn}"
}
output "lb_target_group_arn_suffix" {
value = "${module.lb_handling.lb_target_group_arn_suffix}"
}
output "lb_arn_suffix" {
value = "${module.lb_handling.lb_arn_suffix}"
}
output "load_balancer_type" {
value = "${module.lb_handling.load_balancer_type}"
}
output "service_discovery_container_name" {
value = "${module.ecs_service.service_discovery_container_name}"
}
output "ecs_service_name" {
value = "${module.ecs_service.ecs_service_name}"
}
output "ecs_task_name" {
value = "${module.ecs_task_definition.aws_ecs_task_definition_family}"
}
output "ecs_cluster_name" {
value = "${local.ecs_cluster_name}"
}
output "container_definition" {
value = "${module.container_definition.json}"
}