infrastructure/pve01.wheatley.in/k8s-wheatley/modules/controlplane/variables.tf

15 lines
325 B
HCL

variable "controlplanes" {
description = "Control plane node configuration"
type = object({
cpu = number
memory = number
disk = string
storagepool = string
talos_version = string
nodes = list(object({
name = string
ip_address = string
}))
})
}