Skip to content

Commit

Permalink
Create empty default for additional tags
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Weiße <[email protected]>
  • Loading branch information
daniel-weisse committed Apr 29, 2024
1 parent 9101417 commit 54ff3f5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions terraform/infrastructure/aws/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -82,5 +82,6 @@ variable "enable_snp" {

variable "additional_tags" {
type = map(any)
default = {}
description = "Additional tags that should be applied to created resources."
}
1 change: 1 addition & 0 deletions terraform/infrastructure/azure/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -92,5 +92,6 @@ variable "marketplace_image" {

variable "additional_tags" {
type = map(any)
default = {}
description = "Additional tags that should be applied to created resources."
}
1 change: 1 addition & 0 deletions terraform/infrastructure/gcp/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -72,5 +72,6 @@ variable "cc_technology" {

variable "additional_labels" {
type = map(any)
default = {}
description = "Additional labels that should be given to created recources."
}
1 change: 1 addition & 0 deletions terraform/infrastructure/openstack/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ variable "floating_ip_pool_id" {

variable "additional_tags" {
type = list(any)
default = []
description = "Additional tags that should be applied to created resources."
}

Expand Down

0 comments on commit 54ff3f5

Please sign in to comment.