fix: Fix destroy failure when talking to EKS endpoint on private network (#815)

This commit is contained in:
Sam "Bo" Beckwith III
2020-03-24 17:19:41 -05:00
committed by GitHub
parent de1419b597
commit 49b0667cd9

View File

@@ -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" {