forked from terraform-aws-modules/terraform-aws-ecs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoutputs.tf
More file actions
107 lines (86 loc) · 3.24 KB
/
outputs.tf
File metadata and controls
107 lines (86 loc) · 3.24 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
################################################################################
# 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 "capacity_providers" {
description = "Map of autoscaling capacity providers created and their attributes"
value = module.cluster.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
}
output "infrastructure_iam_role_arn" {
description = "The Amazon Resource Name (ARN) specifying the IAM role"
value = module.cluster.infrastructure_iam_role_arn
}
output "infrastructure_iam_role_name" {
description = "IAM role name"
value = module.cluster.infrastructure_iam_role_name
}
output "infrastructure_iam_role_unique_id" {
description = "Stable and unique string identifying the IAM role"
value = module.cluster.infrastructure_iam_role_unique_id
}
output "node_iam_role_arn" {
description = "The Amazon Resource Name (ARN) specifying the IAM role"
value = module.cluster.node_iam_role_arn
}
output "node_iam_role_name" {
description = "IAM role name"
value = module.cluster.node_iam_role_name
}
output "node_iam_role_unique_id" {
description = "Stable and unique string identifying the IAM role"
value = module.cluster.node_iam_role_unique_id
}
output "node_iam_instance_profile_arn" {
description = "ARN assigned by AWS to the instance profile"
value = module.cluster.node_iam_instance_profile_arn
}
output "node_iam_instance_profile_id" {
description = "Instance profile's ID"
value = module.cluster.node_iam_instance_profile_id
}
output "node_iam_instance_profile_unique" {
description = "Stable and unique string identifying the IAM instance profile"
value = module.cluster.node_iam_instance_profile_unique
}
################################################################################
# Service(s)
################################################################################
output "services" {
description = "Map of services created and their attributes"
value = module.service
}