Files
terraform/proxmox/variables.tf
T
2026-09-02 14:14:49 -04:00

22 lines
312 B
Terraform

variable "vm_guests" {
type = list(object({
name = string
host = string
ipv4_address = string
role = string
cpu = number
memory = number
}))
}
variable "talos_version" {
type = string
}
variable "cluster_name" {
type = string
}
variable "kubernetes_version" {
type = string
}