-
Notifications
You must be signed in to change notification settings - Fork 0
/
output.tf
78 lines (63 loc) · 1.97 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
output "service_name" {
description = "ECS Service name"
value = module.task.service_name
}
output "service_role_arn" {
description = "ECS Service role ARN"
value = module.task.service_role_arn
}
output "task_role_name" {
description = "ECS Task role name"
value = module.task.task_role_name
}
output "task_role_arn" {
description = "ECS Task role ARN"
value = module.task.task_role_arn
}
output "task_definition_family" {
description = "ECS task definition family"
value = module.task.task_definition_family
}
output "task_definition_revision" {
description = "ECS task definition revision"
value = module.task.task_definition_revision
}
output "container_name" {
description = "ECS task container name"
value = module.label.id
}
output "ecs_exec_role_policy_id" {
description = "The ECS service role policy ID, in the form of role_name:role_policy_name"
value = module.task.ecs_exec_role_policy_id
}
output "ecs_exec_role_policy_name" {
description = "ECS service role name"
value = module.task.ecs_exec_role_policy_name
}
output "task_exec_role_name" {
description = "ECS Task role name"
value = module.task.task_exec_role_name
}
output "task_exec_role_arn" {
description = "ECS Task exec role ARN"
value = module.task.task_exec_role_arn
}
output "log_group_name" {
description = "The name of the log group"
value = join("", aws_cloudwatch_log_group.app.*.name)
}
output "log_group_arn" {
description = " The Amazon Resource Name (ARN) specifying the log group"
value = join("", aws_cloudwatch_log_group.app.*.arn)
}
output "service_arn" {
value = module.task.service_arn
}
output "task_definition_arn" {
description = "ECS task definition ARN"
value = module.task.task_definition_arn
}
output "task_definition_arn_without_revision" {
description = "ECS task definition ARN without revision"
value = module.task.task_definition_arn_without_revision
}