-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
48 lines (38 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
38
39
40
41
42
43
44
45
46
47
48
# XOSS Terraform Labels Outputs
# ----------------------------------------------------------------------------------------------------------------------
output "id" {
value = local.id
description = "Disambiguated ID"
}
output "product" {
value = local.product
description = "Normalized name"
}
output "account" {
value = local.account
description = "Normalized stage"
}
output "attributes" {
value = local.attributes
description = "List of attributes"
}
output "delimiter" {
value = local.delimiter
description = "Delimiter between `namespace`, `environment`, `stage`, `name` and `attributes`"
}
output "tags" {
value = local.tags
description = "Normalized Tag map"
}
output "tags_as_list_of_maps" {
value = local.tags_as_list_of_maps
description = "Additional tags as a list of maps, which can be used in several AWS resources"
}
output "context" {
value = local.output_context
description = "Context of this module to pass to other label modules"
}
output "label_order" {
value = local.label_order
description = "The naming order of the id output and Name tag"
}