feat: Add var.wait_for_cluster_timeout to allow configuring the wait for cluster timeout (#1420)

This commit is contained in:
SNA
2021-06-01 16:10:31 -05:00
committed by GitHub
parent 6ad44056e3
commit 686193ed4e
3 changed files with 8 additions and 1 deletions

View File

@@ -387,3 +387,9 @@ variable "workers_egress_cidrs" {
type = list(string)
default = ["0.0.0.0/0"]
}
variable "wait_for_cluster_timeout" {
description = "A timeout (in seconds) to wait for cluster to be available."
type = number
default = 300
}