This commit is contained in:
2026-09-02 21:14:55 -04:00
parent 2d661a1a76
commit af8dcaec06
13 changed files with 200 additions and 3 deletions
+36
View File
@@ -19,4 +19,40 @@ variable "cluster_name" {
variable "kubernetes_version" {
type = string
}
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
}))
}