infrastructure/ingress.tjo.cloud/terraform/variables.tf
Tine 4a0b589859
Some checks failed
/ lint (push) Failing after 2m2s
feat(ingress.tjo.cloud): add dyndns support
2025-01-02 16:27:42 +01:00

44 lines
No EOL
688 B
HCL

variable "nodes" {
type = map(object({
id = number
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
}
variable "tailscale_apikey" {
type = string
sensitive = true
}
variable "digitalocean_token" {
type = string
sensitive = true
}