From e6e7877b54ba4781e9167dfcf36707c329abd0f7 Mon Sep 17 00:00:00 2001 From: Tamas Millian Date: Tue, 13 Apr 2021 12:20:58 +0100 Subject: [PATCH] fix: add description for private API ingress sg rule --- cluster.tf | 1 + 1 file changed, 1 insertion(+) diff --git a/cluster.tf b/cluster.tf index 53a696bdee..748fa4315b 100644 --- a/cluster.tf +++ b/cluster.tf @@ -53,6 +53,7 @@ resource "aws_eks_cluster" "this" { } resource "aws_security_group_rule" "cluster_private_access" { + description = "Allow private K8S API ingress from custom source." count = var.create_eks && var.cluster_create_endpoint_private_access_sg_rule && var.cluster_endpoint_private_access ? 1 : 0 type = "ingress" from_port = 443