-
Notifications
You must be signed in to change notification settings - Fork 0
/
output.tf
133 lines (107 loc) · 4.07 KB
/
output.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
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
################################################################################
# Cluster
################################################################################
output "cluster_arn" {
description = "ARN that identifies the cluster"
value = module.ecs_cluster.cluster_arn
}
output "cluster_id" {
description = "ID that identifies the cluster"
value = module.ecs_cluster.cluster_id
}
output "cluster_name" {
description = "Name that identifies the cluster"
value = module.ecs_cluster.cluster_name
}
output "cluster_capacity_providers" {
description = "Map of cluster capacity providers attributes"
value = module.ecs_cluster.cluster_capacity_providers
}
output "cluster_autoscaling_capacity_providers" {
description = "Map of capacity providers created and their attributes"
value = module.ecs_cluster.autoscaling_capacity_providers
}
################################################################################
# Service
################################################################################
output "service_id" {
description = "ARN that identifies the service"
value = module.directusCMS.id
}
output "service_name" {
description = "Name of the service"
value = module.directusCMS.name
}
output "service_iam_role_name" {
description = "Service IAM role name"
value = module.directusCMS.iam_role_name
}
output "service_iam_role_arn" {
description = "Service IAM role ARN"
value = module.directusCMS.iam_role_arn
}
output "service_iam_role_unique_id" {
description = "Stable and unique string identifying the service IAM role"
value = module.directusCMS.iam_role_unique_id
}
output "service_container_definitions" {
description = "Container definitions"
value = module.directusCMS.container_definitions
sensitive = false
}
output "service_task_definition_arn" {
description = "Full ARN of the Task Definition (including both `family` and `revision`)"
value = module.directusCMS.task_definition_arn
}
output "service_task_definition_revision" {
description = "Revision of the task in a particular family"
value = module.directusCMS.task_definition_revision
}
output "service_task_exec_iam_role_name" {
description = "Task execution IAM role name"
value = module.directusCMS.task_exec_iam_role_name
}
output "service_task_exec_iam_role_arn" {
description = "Task execution IAM role ARN"
value = module.directusCMS.task_exec_iam_role_arn
}
output "service_task_exec_iam_role_unique_id" {
description = "Stable and unique string identifying the task execution IAM role"
value = module.directusCMS.task_exec_iam_role_unique_id
}
output "service_tasks_iam_role_name" {
description = "Tasks IAM role name"
value = module.directusCMS.tasks_iam_role_name
}
output "service_tasks_iam_role_arn" {
description = "Tasks IAM role ARN"
value = module.directusCMS.tasks_iam_role_arn
}
output "service_tasks_iam_role_unique_id" {
description = "Stable and unique string identifying the tasks IAM role"
value = module.directusCMS.tasks_iam_role_unique_id
}
output "service_task_set_id" {
description = "The ID of the task set"
value = module.directusCMS.task_set_id
}
output "service_task_set_arn" {
description = "The Amazon Resource Name (ARN) that identifies the task set"
value = module.directusCMS.task_set_arn
}
output "service_task_set_stability_status" {
description = "The stability status. This indicates whether the task set has reached a steady state"
value = module.directusCMS.task_set_stability_status
}
output "service_task_set_status" {
description = "The status of the task set"
value = module.directusCMS.task_set_status
}
output "service_autoscaling_policies" {
description = "Map of autoscaling policies and their attributes"
value = module.directusCMS.autoscaling_policies
}
output "service_autoscaling_scheduled_actions" {
description = "Map of autoscaling scheduled actions and their attributes"
value = module.directusCMS.autoscaling_scheduled_actions
}