mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-17 20:04:36 -05:00
terraform: set empty default value for additional_tags
(#3052)
Signed-off-by: Daniel Weiße <dw@edgeless.systems>
This commit is contained in:
parent
47fbbd42a9
commit
f6999084c9
2
.github/workflows/e2e-test.yml
vendored
2
.github/workflows/e2e-test.yml
vendored
@ -286,6 +286,6 @@ jobs:
|
|||||||
GH_TOKEN: ${{ github.token }}
|
GH_TOKEN: ${{ github.token }}
|
||||||
uses: ./.github/actions/update_tfstate
|
uses: ./.github/actions/update_tfstate
|
||||||
with:
|
with:
|
||||||
name: terraform-state-${{ steps.e2e_test.outputs.namePrefix }}
|
name: terraform-state-${{ steps.e2e_test.outputs.namePrefix }}
|
||||||
runID: ${{ github.run_id }}
|
runID: ${{ github.run_id }}
|
||||||
encryptionSecret: ${{ secrets.ARTIFACT_ENCRYPT_PASSWD }}
|
encryptionSecret: ${{ secrets.ARTIFACT_ENCRYPT_PASSWD }}
|
||||||
|
@ -82,5 +82,6 @@ variable "enable_snp" {
|
|||||||
|
|
||||||
variable "additional_tags" {
|
variable "additional_tags" {
|
||||||
type = map(any)
|
type = map(any)
|
||||||
|
default = {}
|
||||||
description = "Additional tags that should be applied to created resources."
|
description = "Additional tags that should be applied to created resources."
|
||||||
}
|
}
|
||||||
|
@ -92,5 +92,6 @@ variable "marketplace_image" {
|
|||||||
|
|
||||||
variable "additional_tags" {
|
variable "additional_tags" {
|
||||||
type = map(any)
|
type = map(any)
|
||||||
|
default = {}
|
||||||
description = "Additional tags that should be applied to created resources."
|
description = "Additional tags that should be applied to created resources."
|
||||||
}
|
}
|
||||||
|
@ -72,5 +72,6 @@ variable "cc_technology" {
|
|||||||
|
|
||||||
variable "additional_labels" {
|
variable "additional_labels" {
|
||||||
type = map(any)
|
type = map(any)
|
||||||
|
default = {}
|
||||||
description = "Additional labels that should be given to created recources."
|
description = "Additional labels that should be given to created recources."
|
||||||
}
|
}
|
||||||
|
@ -61,6 +61,7 @@ variable "floating_ip_pool_id" {
|
|||||||
|
|
||||||
variable "additional_tags" {
|
variable "additional_tags" {
|
||||||
type = list(any)
|
type = list(any)
|
||||||
|
default = []
|
||||||
description = "Additional tags that should be applied to created resources."
|
description = "Additional tags that should be applied to created resources."
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user