Skip to content

Commit 67d3ed8

Browse files
author
Sohan
committed
add the attributes
1 parent 3e67d46 commit 67d3ed8

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

main.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ module "labels" {
1313
name = var.name
1414
repository = var.repository
1515
environment = var.environment
16+
attributes = var.attributes
1617
managedby = var.managedby
1718
label_order = var.label_order
1819
}

variables.tf

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,12 @@ variable "environment" {
1818
description = "Environment (e.g. `prod`, `dev`, `staging`)."
1919
}
2020

21+
variable "attributes" {
22+
type = list(any)
23+
default = []
24+
description = "Additional attributes (e.g. `1`)."
25+
}
26+
2127
variable "managedby" {
2228
type = string
2329
default = "[email protected]"

0 commit comments

Comments
 (0)