This commit is contained in:
2023-12-22 16:45:17 -06:00
parent add2f7aa86
commit 6e9f666f23
3 changed files with 55 additions and 0 deletions

View File

@@ -46,3 +46,14 @@ variable "master" {
})
}
variable "node" {
description = "Defaults of worker nodes in K3S"
type = object({
count = number
template = string
cores = number
memory = number
node = list(string)
ip = list(number)
})
}