forked from cloudposse/terraform-null-label
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlabel3.tf
More file actions
32 lines (28 loc) · 687 Bytes
/
Copy pathlabel3.tf
File metadata and controls
32 lines (28 loc) · 687 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
module "label3" {
source = "../../"
name = "Starfish"
stage = "release"
context = module.label1.context
delimiter = "."
regex_replace_chars = "/[^a-zA-Z0-9-.]/"
tags = {
"Eat" = "Carrot"
"Animal" = "Rabbit"
}
}
output "label3" {
value = {
id = module.label3.id
name = module.label3.name
namespace = module.label3.namespace
stage = module.label3.stage
attributes = module.label3.attributes
delimiter = module.label3.delimiter
}
}
output "label3_tags" {
value = module.label3.tags
}
output "label3_context" {
value = module.label3.context
}