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 2f5a24f commit fbab21f
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,12 @@ variable "managedby" {
description = "ManagedBy, eg 'CloudDrove'."
}

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

variable "enable" {
type = bool
default = true
Expand Down Expand Up @@ -179,9 +185,5 @@ variable "sku_name" {
default = "Standard"
description = "The SKU which should be used. At this time the only supported value is Standard. Defaults to Standard."
}
variable "extra_tags" {
type = map(string)
default = null
description = "Variable to pass extra tags."
}


0 comments on commit fbab21f

Please sign in to comment.