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

@@ -90,7 +90,7 @@ data "http" "wait_for_cluster" {
count = var.create_eks && var.manage_aws_auth ? 1 : 0
url = format("%s/healthz", aws_eks_cluster.this[0].endpoint)
ca_certificate = base64decode(coalescelist(aws_eks_cluster.this[*].certificate_authority[0].data, [""])[0])
timeout = 300
timeout = var.wait_for_cluster_timeout
depends_on = [
aws_eks_cluster.this,