From 1a85f4bbf2c15f268b72f676496233729263eb9a 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 7a1ea058e..67d0ec4d3 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 03fbf921e..577cdd4f0 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 3be31c6af..601394a55 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 4f68c7a4a..12242f08b 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." }