This commit is contained in:
2026-09-03 00:35:34 -04:00
parent af8dcaec06
commit fafc013896
16 changed files with 187 additions and 139 deletions
+28
View File
@@ -17,6 +17,10 @@ variable "cluster_name" {
type = string
}
variable "cluster_api_port" {
type = number
}
variable "kubernetes_version" {
type = string
}
@@ -55,4 +59,28 @@ variable "ipv6_nameservers" {
type = list(object({
address = string
}))
}
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
}