chore: Refactor using new Proxmox provider

This commit is contained in:
Peter 2025-10-26 18:14:46 +01:00
parent 7d4baad8ff
commit 310f6fb29d
Signed by: Peter
SSH key fingerprint: SHA256:B5tYaxBExaDm74r1px9iVeZ6F/ZDiyiy9SbBqfZYrvg
7 changed files with 320 additions and 97 deletions

View file

@ -1,15 +1,17 @@
variable "workers" {
variable "worker" {
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
}))
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
})
}