forked from terraform-aws-modules/terraform-aws-ecs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
62 lines (50 loc) · 1.87 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
51
52
53
54
55
56
57
58
59
60
61
62
################################################################################
# Cluster
################################################################################
output "cluster_arn" {
description = "ARN that identifies the cluster"
value = module.cluster.arn
}
output "cluster_id" {
description = "ID that identifies the cluster"
value = module.cluster.id
}
output "cluster_name" {
description = "Name that identifies the cluster"
value = module.cluster.name
}
output "cloudwatch_log_group_name" {
description = "Name of CloudWatch log group created"
value = module.cluster.cloudwatch_log_group_name
}
output "cloudwatch_log_group_arn" {
description = "ARN of CloudWatch log group created"
value = module.cluster.cloudwatch_log_group_arn
}
output "cluster_capacity_providers" {
description = "Map of cluster capacity providers attributes"
value = module.cluster.cluster_capacity_providers
}
output "autoscaling_capacity_providers" {
description = "Map of autoscaling capacity providers created and their attributes"
value = module.cluster.autoscaling_capacity_providers
}
output "task_exec_iam_role_name" {
description = "Task execution IAM role name"
value = module.cluster.task_exec_iam_role_name
}
output "task_exec_iam_role_arn" {
description = "Task execution IAM role ARN"
value = module.cluster.task_exec_iam_role_arn
}
output "task_exec_iam_role_unique_id" {
description = "Stable and unique string identifying the task execution IAM role"
value = module.cluster.task_exec_iam_role_unique_id
}
################################################################################
# Service(s)
################################################################################
output "services" {
description = "Map of services created and their attributes"
value = module.service
}