-
-
Notifications
You must be signed in to change notification settings - Fork 245
/
outputs.tf
32 lines (27 loc) · 1.18 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
output "json_map_encoded_list" {
description = "JSON string encoded list of container definitions for use with other terraform resources such as aws_ecs_task_definition"
value = "[${local.json_map}]"
}
output "json_map_encoded" {
description = "JSON string encoded container definitions for use with other terraform resources such as aws_ecs_task_definition"
value = local.json_map
}
output "json_map_object" {
description = "JSON map encoded container definition"
value = local.final_container_definition
}
output "sensitive_json_map_encoded_list" {
description = "JSON string encoded list of container definitions for use with other terraform resources such as aws_ecs_task_definition (sensitive)"
value = "[${local.json_map}]"
sensitive = true
}
output "sensitive_json_map_encoded" {
description = "JSON string encoded container definitions for use with other terraform resources such as aws_ecs_task_definition (sensitive)"
value = local.json_map
sensitive = true
}
output "sensitive_json_map_object" {
description = "JSON map encoded container definition (sensitive)"
value = local.final_container_definition
sensitive = true
}