Skip to content

Commit

Permalink
add the attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
Sohan committed Jan 15, 2021
1 parent 3e67d46 commit 67d3ed8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ module "labels" {
name = var.name
repository = var.repository
environment = var.environment
attributes = var.attributes
managedby = var.managedby
label_order = var.label_order
}
Expand Down
6 changes: 6 additions & 0 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@ variable "environment" {
description = "Environment (e.g. `prod`, `dev`, `staging`)."
}

variable "attributes" {
type = list(any)
default = []
description = "Additional attributes (e.g. `1`)."
}

variable "managedby" {
type = string
default = "hello@clouddrove.com"
Expand Down

0 comments on commit 67d3ed8

Please sign in to comment.