mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-01-15 16:23:58 +01:00
17 lines
375 B
HCL
17 lines
375 B
HCL
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
|
|
} |