terraform: set empty default value for additional_tags (#3052)

Signed-off-by: Daniel Weiße <dw@edgeless.systems>
This commit is contained in:
Daniel Weiße 2024-05-03 10:27:46 +02:00 committed by GitHub
parent 47fbbd42a9
commit f6999084c9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 5 additions and 1 deletions

View File

@ -286,6 +286,6 @@ jobs:
GH_TOKEN: ${{ github.token }}
uses: ./.github/actions/update_tfstate
with:
name: terraform-state-${{ steps.e2e_test.outputs.namePrefix }}
name: terraform-state-${{ steps.e2e_test.outputs.namePrefix }}
runID: ${{ github.run_id }}
encryptionSecret: ${{ secrets.ARTIFACT_ENCRYPT_PASSWD }}

View File

@ -82,5 +82,6 @@ variable "enable_snp" {
variable "additional_tags" {
type = map(any)
default = {}
description = "Additional tags that should be applied to created resources."
}

View File

@ -92,5 +92,6 @@ variable "marketplace_image" {
variable "additional_tags" {
type = map(any)
default = {}
description = "Additional tags that should be applied to created resources."
}

View File

@ -72,5 +72,6 @@ variable "cc_technology" {
variable "additional_labels" {
type = map(any)
default = {}
description = "Additional labels that should be given to created recources."
}

View File

@ -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."
}