feat: Ability to specify cluster update timeout (#1588)

This commit is contained in:
Marco Kilchhofer
2021-09-17 16:45:49 +02:00
committed by GitHub
parent 926af35595
commit 46f16d6ae8
3 changed files with 8 additions and 0 deletions

View File

@@ -234,6 +234,12 @@ variable "cluster_delete_timeout" {
default = "15m"
}
variable "cluster_update_timeout" {
description = "Timeout value when updating the EKS cluster."
type = string
default = "60m"
}
variable "cluster_create_security_group" {
description = "Whether to create a security group for the cluster or attach the cluster to `cluster_security_group_id`."
type = bool