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

19 lines
487 B
Terraform
Raw Normal View History

2025-10-26 11:42:08 +01:00
variable "controlplane" {
2025-10-24 23:41:05 +02:00
description = "Control plane node configuration"
type = object({
2025-10-26 11:42:08 +01:00
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
mac_address = string
2025-10-24 23:41:05 +02:00
})
}