docs: Clarify about the cluster_endpoint_private_access_cidrs usage (#1400)

This commit is contained in:
Thierno IB. BARRY
2021-05-28 02:34:52 +02:00
committed by GitHub
parent 6d7d6f6f5a
commit d7630ef632
2 changed files with 4 additions and 4 deletions

View File

@@ -248,13 +248,13 @@ variable "iam_path" {
}
variable "cluster_create_endpoint_private_access_sg_rule" {
description = "Whether to create security group rules for the access to the Amazon EKS private API server endpoint."
description = "Whether to create security group rules for the access to the Amazon EKS private API server endpoint. When is `true`, `cluster_endpoint_private_access_cidrs` must be setted."
type = bool
default = false
}
variable "cluster_endpoint_private_access_cidrs" {
description = "List of CIDR blocks which can access the Amazon EKS private API server endpoint."
description = "List of CIDR blocks which can access the Amazon EKS private API server endpoint. To use this `cluster_create_endpoint_private_access_sg_rule` must be set to `true`."
type = list(string)
default = null
}