mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-01-15 08:14:12 +01:00
18 lines
508 B
HCL
18 lines
508 B
HCL
variable "aws_node_termination_handler_chart_version" {
|
|
description = "Version of the aws-node-termination-handler Helm chart to install."
|
|
type = string
|
|
default = "0.15.0"
|
|
}
|
|
|
|
variable "namespace" {
|
|
description = "Namespace for the aws-node-termination-handler."
|
|
type = string
|
|
default = "kube-system"
|
|
}
|
|
|
|
variable "serviceaccount" {
|
|
description = "Serviceaccount for the aws-node-termination-handler."
|
|
type = string
|
|
default = "aws-node-termination-handler"
|
|
}
|