File tree 2 files changed +8
-1
lines changed
2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ module "labels" {
23
23
managedby = var. managedby
24
24
label_order = var. label_order
25
25
repository = var. repository
26
+ extra_tags = var. extra_tags
26
27
}
27
28
28
29
# #-----------------------------------------------------------------------------
Original file line number Diff line number Diff line change @@ -30,6 +30,12 @@ variable "managedby" {
30
30
description = " ManagedBy, eg ''."
31
31
}
32
32
33
+ variable "extra_tags" {
34
+ type = map (string )
35
+ default = null
36
+ description = " Variable to pass extra tags."
37
+ }
38
+
33
39
variable "enabled" {
34
40
type = bool
35
41
description = " Set to false to prevent the module from creating any resources."
@@ -259,4 +265,4 @@ variable "network_acls" {
259
265
virtual_network_subnet_ids = optional (list (string )),
260
266
})
261
267
default = {}
262
- }
268
+ }
You can’t perform that action at this time.
0 commit comments