From 54ff3f553aebd43469fc74da59090a966de7051a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Wei=C3=9Fe?= Date: Mon, 29 Apr 2024 09:32:21 +0200 Subject: [PATCH] Create empty default for additional tags MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Daniel Weiße --- terraform/infrastructure/aws/variables.tf | 1 + terraform/infrastructure/azure/variables.tf | 1 + terraform/infrastructure/gcp/variables.tf | 1 + terraform/infrastructure/openstack/variables.tf | 1 + 4 files changed, 4 insertions(+) diff --git a/terraform/infrastructure/aws/variables.tf b/terraform/infrastructure/aws/variables.tf index 7a1ea058e98..67d0ec4d31f 100644 --- a/terraform/infrastructure/aws/variables.tf +++ b/terraform/infrastructure/aws/variables.tf @@ -82,5 +82,6 @@ variable "enable_snp" { variable "additional_tags" { type = map(any) + default = {} description = "Additional tags that should be applied to created resources." } diff --git a/terraform/infrastructure/azure/variables.tf b/terraform/infrastructure/azure/variables.tf index 03fbf921e48..577cdd4f0be 100644 --- a/terraform/infrastructure/azure/variables.tf +++ b/terraform/infrastructure/azure/variables.tf @@ -92,5 +92,6 @@ variable "marketplace_image" { variable "additional_tags" { type = map(any) + default = {} description = "Additional tags that should be applied to created resources." } diff --git a/terraform/infrastructure/gcp/variables.tf b/terraform/infrastructure/gcp/variables.tf index 3be31c6afd3..601394a5579 100644 --- a/terraform/infrastructure/gcp/variables.tf +++ b/terraform/infrastructure/gcp/variables.tf @@ -72,5 +72,6 @@ variable "cc_technology" { variable "additional_labels" { type = map(any) + default = {} description = "Additional labels that should be given to created recources." } diff --git a/terraform/infrastructure/openstack/variables.tf b/terraform/infrastructure/openstack/variables.tf index 4f68c7a4ada..12242f08b18 100644 --- a/terraform/infrastructure/openstack/variables.tf +++ b/terraform/infrastructure/openstack/variables.tf @@ -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." }