forked from cloudposse/terraform-null-label
-
Notifications
You must be signed in to change notification settings - Fork 0
/
label3n.tf
36 lines (31 loc) · 795 Bytes
/
label3n.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
module "label3n" {
source = "../../"
name = "Starfish"
stage = "release"
context = module.label1.normalized_context
delimiter = "."
regex_replace_chars = "/[^-a-zA-Z0-9.]/"
tags = {
"Eat" = "Carrot"
"Animal" = "Rabbit"
}
}
output "label3n" {
value = {
id = module.label3n.id
name = module.label3n.name
namespace = module.label3n.namespace
stage = module.label3n.stage
attributes = module.label3n.attributes
delimiter = module.label3n.delimiter
}
}
output "label3n_tags" {
value = module.label3n.tags
}
output "label3n_context" {
value = module.label3n.context
}
output "label3n_normalized_context" {
value = module.label3n.normalized_context
}