34 lines
631 B
HCL
34 lines
631 B
HCL
variable "kubernetes_version" {
|
|
type = string
|
|
description = "Kubernetes cluster version (eg: 1.23.5)"
|
|
}
|
|
|
|
variable "cluster_cidr" {
|
|
type = string
|
|
description = "Kubernetes cluster CIDR"
|
|
}
|
|
|
|
variable "kubernetes_server" {
|
|
type = string
|
|
description = "Kubernetes (master) server address (eg: https://k8s.my.domain:6443/)"
|
|
}
|
|
|
|
variable "mode" {
|
|
type = string
|
|
default = "iptables"
|
|
}
|
|
|
|
variable "daemonset_name" {
|
|
type = string
|
|
default = "kube-proxy"
|
|
}
|
|
|
|
variable "additional_config" {
|
|
type = map(any)
|
|
default = {}
|
|
}
|
|
|
|
variable "namespace" {
|
|
type = string
|
|
default = "kube-system"
|
|
} |