ingress/terraform/variables.tf
2024-11-08 22:11:27 +01:00

33 lines
523 B
HCL

variable "nodes" {
type = map(object({
host = string
ipv4_address = string
ipv4_gateway = string
ipv6_address = string
ipv6_gateway = string
cores = optional(number, 1)
memory = optional(number, 512)
iso_storage = string
boot_storage = string
boot_size = optional(number, 8)
}))
}
variable "ssh_keys" {
type = list(string)
}
variable "proxmox_token" {
type = string
sensitive = true
}
variable "authentik_token" {
type = string
sensitive = true
}