forked from cloudposse/terraform-null-label
-
Notifications
You must be signed in to change notification settings - Fork 0
/
label8n.tf
45 lines (35 loc) · 779 Bytes
/
label8n.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
module "label8n" {
source = "../../"
enabled = true
namespace = "EG"
environment = "demo"
name = "blue"
attributes = ["eks", "ClusteR"]
delimiter = "-"
label_value_case = "none"
tags = {
"kubernetes.io/cluster/" = "shared"
}
}
module "label8n_context" {
source = "../../"
context = module.label8n.context
}
output "label8n_context_id" {
value = module.label8n_context.id
}
output "label8n_context_context" {
value = module.label8n_context.context
}
output "label8n_context_tags" {
value = module.label8n_context.tags
}
output "label8n_id" {
value = module.label8n.id
}
output "label8n_context" {
value = module.label8n.context
}
output "label8n_tags" {
value = module.label8n.tags
}