From 348f4412215efa125e6d90eb893afc4f883e6947 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ariel=20Vi=C3=B1as?= Date: Wed, 10 Jun 2020 07:38:56 -0300 Subject: [PATCH] fix: remove unnecessary conditional in private access security group (#915) --- cluster.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cluster.tf b/cluster.tf index 55a1747..68a0736 100644 --- a/cluster.tf +++ b/cluster.tf @@ -46,7 +46,7 @@ resource "aws_eks_cluster" "this" { } resource "aws_security_group_rule" "cluster_private_access" { - count = var.create_eks && var.manage_aws_auth && var.cluster_endpoint_private_access && var.cluster_endpoint_public_access == false ? 1 : 0 + count = var.create_eks && var.cluster_endpoint_private_access && var.cluster_endpoint_public_access == false ? 1 : 0 type = "ingress" from_port = 443 to_port = 443