feat: Allow override of timeouts in node_groups (#1552)

This commit is contained in:
Robert Kozak
2021-09-03 08:07:59 -07:00
committed by GitHub
parent c2490c5148
commit b7413b3e37
8 changed files with 25 additions and 1 deletions

View File

@@ -104,6 +104,12 @@ variable "cluster_tags" {
default = {}
}
variable "timeouts" {
description = "A map of timeouts for create/update/delete operations."
type = map(string)
default = {}
}
variable "vpc_id" {
description = "VPC where the cluster and workers will be deployed."
type = string
@@ -404,4 +410,5 @@ variable "openid_connect_audiences" {
description = "List of OpenID Connect audience client IDs to add to the IRSA provider."
type = list(string)
default = []
}
}