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

18 lines
455 B
Terraform
Raw Normal View History

variable "controlplane" {
2025-10-24 23:41:05 +02:00
description = "Control plane node configuration"
type = object({
cpu = number
memory = number
disk = string
storagepool = string
talos_version = string
cluster_name = string
kubernetes_version = string
node_name = string
node_ipv4_address = string
cluster_endpoint = string
ipv4_gateway = string
2025-10-24 23:41:05 +02:00
})
}