mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-01-17 17:22:13 +01:00
fix: Fix destroy failure when talking to EKS endpoint on private network (#815)
This commit is contained in:
committed by
GitHub
parent
de1419b597
commit
49b0667cd9
@@ -61,7 +61,8 @@ resource "null_resource" "wait_for_cluster" {
|
||||
count = var.create_eks && var.manage_aws_auth ? 1 : 0
|
||||
|
||||
depends_on = [
|
||||
aws_eks_cluster.this[0]
|
||||
aws_eks_cluster.this[0],
|
||||
aws_security_group_rule.cluster_private_access,
|
||||
]
|
||||
|
||||
provisioner "local-exec" {
|
||||
|
||||
Reference in New Issue
Block a user