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

16 lines
312 B
Terraform
Raw Normal View History

2025-10-24 23:41:05 +02:00
variable "workers" {
description = "Worker node configuration"
type = object({
cpu = number
memory = number
disk = string
storagepool = string
talos_version = string
nodes = list(object({
name = string
ip_address = string
}))
})
}