-
Notifications
You must be signed in to change notification settings - Fork 4
/
outputs.tf
38 lines (32 loc) · 1.14 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
output "result" {
description = "result with tags `object{}`"
value = local.result
}
output "result_map" {
description = "map of results with tags"
value = {
"git" = local.result_git,
"terraform" = local.result_terraform,
"data" = local.result_data,
"enviroment" = local.result_enviroment,
"gc" = local.result_gc,
"backup" = local.result_backup,
"custom" = local.result_custom,
}
}
output "result_asg_list" {
description = "result with list of tags for ASG `tuple[object{}]` `propagate_at_launch=true`"
value = local.result_asg
}
output "result_asg_list_false" {
description = "result with list of tags for ASG `tuple[object{}]` `propagate_at_launch=false`"
value = local.result_asg_false
}
output "result_awscc" {
description = "result with list of tags for AWS Cloud Control API terraform provider `tuple[object{key=key, value=value}]`"
value = local.result_awscc
}
output "result_data_environment" {
description = "result with only data and environment tags. No more than 10 tags. Usefull for S3 Objects."
value = local.result_data_environment
}