Skip to content

Commit

Permalink
feat: Added support for custom tags (#15)
Browse files Browse the repository at this point in the history
* feat: Added support for custom tags

* feat: Added support for custom tags

* feat: Added support for custom tags
  • Loading branch information
Rupalgw authored Feb 5, 2024
1 parent 933e1f5 commit d4e6b40
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 @@ -11,6 +11,7 @@ module "labels" {
business_unit = var.business_unit
label_order = var.label_order
repository = var.repository
extra_tags = var.extra_tags
}

##-----------------------------------------------------------------------------
Expand Down
6 changes: 6 additions & 0 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,12 @@ variable "managedby" {
description = "ManagedBy, eg 'CloudDrove'."
}

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

variable "enabled" {
type = bool
default = true
Expand Down

0 comments on commit d4e6b40

Please sign in to comment.