2024-07-14 10:19:37 +00:00
|
|
|
variable "nodes" {
|
|
|
|
type = map(object({
|
|
|
|
public = bool
|
|
|
|
type = string
|
|
|
|
host = string
|
|
|
|
|
|
|
|
cores = optional(number, 4)
|
2024-07-17 19:43:11 +00:00
|
|
|
memory = optional(number, 4096)
|
2024-07-14 10:19:37 +00:00
|
|
|
|
|
|
|
boot_pool = string
|
2024-07-17 19:43:11 +00:00
|
|
|
boot_size = optional(number, 32)
|
2024-07-14 10:19:37 +00:00
|
|
|
}))
|
|
|
|
}
|
|
|
|
|
2024-07-17 19:43:11 +00:00
|
|
|
variable "talos" {
|
2024-07-14 10:19:37 +00:00
|
|
|
type = object({
|
2024-07-17 19:43:11 +00:00
|
|
|
version = optional(string, "v1.7.5")
|
2024-07-14 10:19:37 +00:00
|
|
|
kubernetes = optional(string, "v1.30.0")
|
2024-07-17 19:43:11 +00:00
|
|
|
|
|
|
|
# Default is:
|
|
|
|
# customization:
|
|
|
|
# systemExtensions:
|
|
|
|
# officialExtensions:
|
|
|
|
# - siderolabs/kata-containers
|
|
|
|
# - siderolabs/qemu-guest-agent
|
|
|
|
# - siderolabs/tailscale
|
|
|
|
schematic_id = optional(string, "a3f29a65dfd32b73c76f14eef96ef7588cf08c7d737d24fae9b8216d1ffa5c3d")
|
2024-07-14 10:19:37 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2024-07-16 19:13:04 +00:00
|
|
|
variable "allow_scheduling_on_control_planes" {
|
|
|
|
default = false
|
|
|
|
type = bool
|
|
|
|
description = "Allow scheduling on control plane nodes"
|
|
|
|
}
|
|
|
|
|
2024-07-14 10:19:37 +00:00
|
|
|
variable "cluster" {
|
|
|
|
type = object({
|
|
|
|
name = string
|
|
|
|
domain = string
|
|
|
|
api = optional(object({
|
|
|
|
subdomain = optional(string, "api")
|
|
|
|
port = optional(number, 6443)
|
|
|
|
}), {})
|
|
|
|
oidc = object({
|
|
|
|
client_id = string
|
|
|
|
issuer_url = string
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "tailscale_authkey" {
|
|
|
|
type = string
|
|
|
|
sensitive = true
|
|
|
|
}
|
2024-07-16 19:13:04 +00:00
|
|
|
|
|
|
|
variable "proxmox" {
|
|
|
|
type = object({
|
2024-07-17 19:43:11 +00:00
|
|
|
name = string
|
|
|
|
url = string
|
|
|
|
insecure = optional(bool, false)
|
|
|
|
iso_storage_id = string
|
2024-07-16 19:13:04 +00:00
|
|
|
})
|
|
|
|
sensitive = true
|
|
|
|
}
|