Update terraform/variables.tf

This commit is contained in:
2022-12-03 13:01:26 +00:00
parent 724f700abf
commit af2bdc3b8d

View File

@@ -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)
})
}