mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-03-17 23:13:46 +01:00
feat: Add var.wait_for_cluster_timeout to allow configuring the wait for cluster timeout (#1420)
This commit is contained in:
2
data.tf
2
data.tf
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user