Files
terraform/proxmox/talos/variables.tf
T

84 lines
1.0 KiB
Terraform
Raw Normal View History

2026-09-01 17:31:47 -04:00
variable "vm_guests" {
type = list(object({
name = string
host = string
role = string
}))
}
variable "talos_version" {
type = string
}
2026-09-02 14:14:49 -04:00
variable "cluster_name" {
type = string
}
2026-09-03 00:35:34 -04:00
variable "cluster_api_port" {
type = number
}
2026-09-02 14:14:49 -04:00
variable "kubernetes_version" {
2026-09-01 17:31:47 -04:00
type = string
2026-09-02 21:14:55 -04:00
}
variable "ipv4_gateway" {
type = string
}
variable "ipv6_gateway" {
type = string
}
variable "ipv4_ntp_servers" {
type = list(string)
}
variable "ipv6_ntp_servers" {
type = list(string)
}
variable "ipv4_subnet_mask" {
type = number
}
variable "search_domains" {
type = list(string)
}
variable "ipv4_nameservers" {
type = list(object({
address = string
}))
}
variable "ipv6_nameservers" {
type = list(object({
address = string
}))
2026-09-03 00:35:34 -04:00
}
variable "ipv4_pod_cidr" {
type = string
}
variable "ipv6_pod_cidr" {
type = string
}
variable "ipv4_service_cidr" {
type = string
}
variable "ipv6_service_cidr" {
type = string
}
variable "discovery_service_endpoint" {
type = string
}
variable "local_domain" {
type = string
2026-09-08 00:15:03 -04:00
}