Skip to content

Commit

Permalink
feat: Added support for custom tags
Browse files Browse the repository at this point in the history
  • Loading branch information
Rupalgw committed Feb 5, 2024
1 parent fbab21f commit 3f2cb3a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ module "labels" {
managedby = var.managedby
label_order = var.label_order
repository = var.repository
extra_tags = var.extra_tags
extra_tags = var.extra_tags
}

##-----------------------------------------------------------------------------
Expand Down
6 changes: 3 additions & 3 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ variable "managedby" {
}

variable "extra_tags" {
type = map(string)
default = null
description = "Variable to pass extra tags."
type = map(string)
default = null
description = "Variable to pass extra tags."
}

variable "enable" {
Expand Down

0 comments on commit 3f2cb3a

Please sign in to comment.