wip
This commit is contained in:
@@ -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
|
||||
}))
|
||||
}
|
||||
Reference in New Issue
Block a user