File tree Expand file tree Collapse file tree 1 file changed +38
-0
lines changed
Expand file tree Collapse file tree 1 file changed +38
-0
lines changed Original file line number Diff line number Diff line change 1+ # Module : LABLE
2+ # Description : This terraform module is designed to generate consistent label names and tags
3+ # for resources. You can use terraform-labels to implement a strict naming
4+ # convention.
5+ output "id" {
6+ value = local. id
7+ description = " Disambiguated ID."
8+ }
9+
10+ output "name" {
11+ value = local. name
12+ description = " Normalized name."
13+ }
14+
15+ output "repository" {
16+ value = local. repository
17+ description = " Terraform current module repo"
18+ }
19+
20+ output "environment" {
21+ value = local. environment
22+ description = " Normalized environment"
23+ }
24+
25+ output "attributes" {
26+ value = local. attributes
27+ description = " Normalized attributes."
28+ }
29+
30+ output "tags" {
31+ value = local. tags
32+ description = " Normalized Tag map."
33+ }
34+
35+ output "label_order" {
36+ value = local. label_order
37+ description = " Normalized Tag map."
38+ }
You can’t perform that action at this time.
0 commit comments