diff --git a/terraform/variables.tf b/terraform/variables.tf index 3dc77f4..8159d6f 100644 --- a/terraform/variables.tf +++ b/terraform/variables.tf @@ -53,3 +53,19 @@ variable "k3server" { ip = list(number) }) } + + +variable "k3server2" { + description = "Defaults of worker nodes in K3S" + type = object({ + count = number + name = list(string) + cores = number + memory = number + drive = string + storage = string + template = string + node = string + ip = list(number) + }) +}