mirror of
https://github.com/terraform-aws-modules/terraform-aws-eks.git
synced 2025-09-09 19:32:58 +08:00
68e9df92c3
Co-authored-by: Thierno IB. BARRY <ibrahima.br@gmail.com>
19 lines
486 B
Terraform
19 lines
486 B
Terraform
variable "region" {
|
|
default = "us-west-2"
|
|
}
|
|
|
|
variable "aws_node_termination_handler_chart_version" {
|
|
description = "Version of the aws-node-termination-handler Helm chart to install."
|
|
default = "0.15.0"
|
|
}
|
|
|
|
variable "namespace" {
|
|
description = "Namespace for the aws-node-termination-handler."
|
|
default = "kube-system"
|
|
}
|
|
|
|
variable "serviceaccount" {
|
|
description = "Serviceaccount for the aws-node-termination-handler."
|
|
default = "aws-node-termination-handler"
|
|
}
|