-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathoutputs.tf
72 lines (59 loc) · 2.17 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
63
64
65
66
67
68
69
70
71
72
output "cloudwatch_log_group" {
description = "All outputs from `aws_cloudwatch_log_group.default`"
value = aws_cloudwatch_log_group.default
}
output "cloudwatch_log_group_arn" {
description = "Cloudwatch log group ARN"
value = try(aws_cloudwatch_log_group.default[0].arn, "")
}
output "cloudwatch_log_group_name" {
description = "Cloudwatch log group name"
value = try(aws_cloudwatch_log_group.default[0].name, "")
}
output "container_definition" {
description = "All outputs from `module.container_definition`"
value = module.container_definition
sensitive = true
}
output "container_definition_json" {
description = "JSON encoded list of container definitions for use with other terraform resources such as aws_task_definition"
value = module.container_definition.json_map_encoded_list
sensitive = true
}
output "container_definition_json_map" {
description = "JSON encoded container definitions for use with other terraform resources such as aws_task_definition"
value = module.container_definition.json_map_encoded
sensitive = true
}
output "exec_role_policy_id" {
description = "The ECS execution role policy ID, in the form of `role_name:role_policy_name`"
value = module.service_task.exec_role_policy_id
}
output "exec_role_policy_name" {
description = "The ECS execution role policy name"
value = module.service_task.exec_role_policy_name
}
output "service_task" {
description = "All outputs from `module.service_task`"
value = module.service_task
}
output "task_definition_family" {
description = "The ECS task definition family"
value = module.service_task.task_definition_family
}
output "task_definition_revision" {
description = "The ECS task definition revision"
value = module.service_task.task_definition_revision
}
output "task_role_arn" {
description = "The ECS task role ARN"
value = module.service_task.task_role_arn
}
output "task_role_id" {
description = "The ECS task role id"
value = module.service_task.task_role_id
}
output "task_role_name" {
description = "The ECS task role name"
value = module.service_task.task_role_name
}