forked from cloudposse/terraform-null-label
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlabel5.tf
More file actions
33 lines (28 loc) · 651 Bytes
/
Copy pathlabel5.tf
File metadata and controls
33 lines (28 loc) · 651 Bytes
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
module "label5" {
source = "../../"
enabled = false
namespace = "eg"
environment = "demo"
name = "blue"
attributes = ["cluster"]
delimiter = "-"
label_order = ["namespace", "stage", "environment", "attributes"]
tags = {
}
}
output "label5" {
value = {
id = module.label5.id
name = module.label5.name
namespace = module.label5.namespace
stage = module.label5.stage
attributes = module.label5.attributes
delimiter = module.label5.delimiter
}
}
output "label5_tags" {
value = module.label5.tags
}
output "label5_context" {
value = module.label5.context
}