Files
terraform/proxmox/variables.tf
T

18 lines
265 B
Terraform
Raw Normal View History

2026-09-01 17:31:47 -04:00
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_endpoint" {
type = string
}