mirror of
https://github.com/outbackdingo/homelab-v.git
synced 2026-08-25 14:53:19 +00:00
54 lines
1.4 KiB
Terraform
54 lines
1.4 KiB
Terraform
variable "image" {
|
|
description = "Talos image configuration"
|
|
type = object({
|
|
factory_url = optional(string, "https://factory.talos.dev")
|
|
schematic_path = string
|
|
version = string
|
|
update_schematic_path = optional(string)
|
|
update_version = optional(string)
|
|
arch = optional(string, "amd64")
|
|
platform = optional(string, "nocloud")
|
|
proxmox_datastore = optional(string, "local")
|
|
})
|
|
}
|
|
|
|
variable "cluster" {
|
|
description = "Cluster configuration"
|
|
type = object({
|
|
name = string
|
|
endpoint = string
|
|
vip = optional(string)
|
|
gateway = string
|
|
subnet_mask = optional(string, "24")
|
|
talos_machine_config_version = optional(string)
|
|
proxmox_cluster = string
|
|
kubernetes_version = string
|
|
api_server = optional(string)
|
|
})
|
|
}
|
|
|
|
variable "nodes" {
|
|
description = "Configuration for cluster nodes"
|
|
type = map(object({
|
|
host_node = string
|
|
machine_type = string
|
|
datastore_id = optional(string, "local-zfs")
|
|
ip = string
|
|
dns = optional(list(string))
|
|
mac_address = string
|
|
vm_id = number
|
|
cpu = number
|
|
ram_dedicated = number
|
|
update = optional(bool, false)
|
|
igpu = optional(bool, false)
|
|
}))
|
|
}
|
|
|
|
variable "cilium" {
|
|
description = "Cilium configuration"
|
|
type = object({
|
|
install_manifest_path = string
|
|
values_path = string
|
|
})
|
|
}
|