forked from nventive/terraform-aws-ecs-container-definition
-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
32 lines (27 loc) · 1.35 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" {
value = module.container_definition.json_map_encoded_list
description = "JSON string encoded list of container definitions for use with other terraform resources such as aws_ecs_task_definition."
}
output "json_map_encoded" {
value = module.container_definition.json_map_encoded
description = "JSON string encoded container definitions for use with other terraform resources such as aws_ecs_task_definition."
}
output "json_map_object" {
value = module.container_definition.json_map_object
description = "JSON map encoded container definition."
}
output "sensitive_json_map_encoded_list" {
value = module.container_definition.sensitive_json_map_encoded_list
sensitive = true
description = "JSON string encoded list of container definitions for use with other terraform resources such as aws_ecs_task_definition (sensitive)."
}
output "sensitive_json_map_encoded" {
value = module.container_definition.sensitive_json_map_encoded
sensitive = true
description = "JSON string encoded container definitions for use with other terraform resources such as aws_ecs_task_definition (sensitive)."
}
output "sensitive_json_map_object" {
value = module.container_definition.sensitive_json_map_object
sensitive = true
description = "JSON map encoded container definition (sensitive)."
}