Skip to content

Commit

Permalink
terraform: set empty default value for additional_tags (#3052)
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Weiße <[email protected]>
  • Loading branch information
daniel-weisse authored May 3, 2024
1 parent 47fbbd4 commit f699908
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/e2e-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
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 f699908

Please sign in to comment.