24 lines
615 B
Terraform
24 lines
615 B
Terraform
|
|
variable "node_config" {
|
||
|
|
description = "Talos node configuration"
|
||
|
|
type = object({
|
||
|
|
ipv4_gateway = string
|
||
|
|
talos_version = string
|
||
|
|
cilium_version = string
|
||
|
|
cluster_name = string
|
||
|
|
kubernetes_version = string
|
||
|
|
cluster_endpoint = string
|
||
|
|
proxmox_node = string
|
||
|
|
controlplane_addresses = list(string)
|
||
|
|
worker_addresses = list(string)
|
||
|
|
})
|
||
|
|
}
|
||
|
|
|
||
|
|
variable "talos_nodes" {
|
||
|
|
description = "List of Talos nodes to bootstrap"
|
||
|
|
type = list(object({
|
||
|
|
name = string
|
||
|
|
type = string
|
||
|
|
ipv4_address = string
|
||
|
|
}))
|
||
|
|
}
|