linter fixes

This commit is contained in:
Moritz Sanft 2024-04-05 09:02:06 +02:00
parent 2ecffaf601
commit 3c07430e17
No known key found for this signature in database
GPG key ID: 335D28368B1DA615
8 changed files with 41 additions and 28 deletions

View file

@ -70,3 +70,12 @@ variable "internal_load_balancer" {
default = false
description = "Use an internal load balancer."
}
variable "cc_technology" {
type = string
description = "The confidential computing technology to use for the nodes. One of `SEV`, `SEV_SNP`."
validation {
condition = contains(["SEV", "SEV_SNP"], var.cc_technology)
error_message = "The confidential computing technology has to be 'SEV' or 'SEV_SNP'."
}
}