diff --git a/terraform/constellation-cluster/variables.tf b/terraform/constellation-cluster/variables.tf index 5122d80a70..a138952730 100644 --- a/terraform/constellation-cluster/variables.tf +++ b/terraform/constellation-cluster/variables.tf @@ -4,6 +4,12 @@ variable "constellation_version" { default = "@@CONSTELLATION_VERSION@@" } +variable "image" { + type = string + description = "The node image reference or semantic release version." + default = "@@CONSTELLATION_VERSION@@" +} + variable "csp" { type = string description = "The cloud service provider to use." @@ -105,15 +111,6 @@ variable "gcp_config" { default = null } -variable "image" { - type = string - description = "The node image reference or semantic release version." - validation { - condition = length(var.image) > 0 - error_message = "The image reference must not be empty." - } -} - variable "kubernetes_version" { type = string description = "Kubernetes version."