mirror of
https://github.com/terraform-aws-modules/terraform-aws-eks.git
synced 2025-09-09 19:32:58 +08:00
70f6150956
Signed-off-by: Andrey Devyatkin <andrey.devyatkin@fivexl.io>
17 lines
375 B
Terraform
17 lines
375 B
Terraform
variable "k8s_version" {
|
|
description = "k8s cluster version"
|
|
default = "1.20"
|
|
type = string
|
|
}
|
|
|
|
variable "enable_admin_container" {
|
|
description = "Enable/disable admin container"
|
|
default = false
|
|
type = bool
|
|
}
|
|
|
|
variable "enable_control_container" {
|
|
description = "Enable/disable control container"
|
|
default = true
|
|
type = bool
|
|
} |