mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-04-24 09:38:25 +02:00
fix: Add description for private API ingress Security Group Rule (#1299)
This commit is contained in:
@@ -53,6 +53,7 @@ resource "aws_eks_cluster" "this" {
|
|||||||
}
|
}
|
||||||
|
|
||||||
resource "aws_security_group_rule" "cluster_private_access" {
|
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
|
count = var.create_eks && var.cluster_create_endpoint_private_access_sg_rule && var.cluster_endpoint_private_access ? 1 : 0
|
||||||
type = "ingress"
|
type = "ingress"
|
||||||
from_port = 443
|
from_port = 443
|
||||||
|
|||||||
Reference in New Issue
Block a user