forked from clouddrove/terraform-aws-labels
-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
38 lines (32 loc) · 875 Bytes
/
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
#Module : LABLE
#Description : This terraform module is designed to generate consistent label names and tags
# for resources. You can use terraform-labels to implement a strict naming
# convention.
output "id" {
value = local.id
description = "Disambiguated ID."
}
output "name" {
value = local.name
description = "Normalized name."
}
output "repository" {
value = local.repository
description = "Terraform current module repo"
}
output "environment" {
value = local.environment
description = "Normalized environment"
}
output "attributes" {
value = local.attributes
description = "Normalized attributes."
}
output "tags" {
value = local.tags
description = "Normalized Tag map."
}
output "label_order" {
value = local.label_order
description = "Normalized Tag map."
}