-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoutputs.tf
50 lines (42 loc) · 1.43 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
45
46
47
48
49
50
output "ecs_cluster_kms_arn" {
description = "The AWS Key Management Service key ID to encrypt the data between the local client and the container"
value = try(module.cluster.ecs_cluster_kms_arn, "")
}
output "ecs_cluster_id" {
description = "ID of the ECS Cluster"
value = try(module.cluster.ecs_cluster_id, "")
}
output "ecs_cluster_arn" {
description = "ARN of the ECS Cluster"
value = try(module.cluster.ecs_cluster_arn, "")
}
output "ecs_cluster_name" {
description = "The name of the ECS cluster"
value = try(module.cluster.ecs_cluster_name, "")
}
output "ecs_service_arn" {
description = "ARN of the ECS service"
value = try(tomap({
for k, f in module.service : k => f.ecs_service_arn
}), "")
}
output "ecs_service_name" {
description = "The name of the ECS service"
value = try(tomap({
for k, f in module.service : k => f.ecs_service_name
}), "")
}
output "aws_ecs_task_definition" {
description = "ARN of the ECS service"
value = try(tomap({
for k, f in module.service : k => f.aws_ecs_task_definition
}), "")
}
output "ecs_cloudwatch_log_group_name" {
description = "The cloudwatch log group to be used by the cluster"
value = try(module.cluster.ecs_cloudwatch_log_group_name, "")
}
output "ecs_cloudwatch_log_group_arn" {
description = "The cloudwatch log group to be used by the cluster"
value = try(module.cluster.ecs_cloudwatch_log_group_arn, "")
}