Add support for eks endpoint_private_access and endpoint_public_access (#314)

This commit is contained in:
Stijn De Haes
2019-03-25 12:05:32 +01:00
committed by Max Williams
parent 97c79643fb
commit 806edb6001
3 changed files with 15 additions and 2 deletions

View File

@@ -241,3 +241,13 @@ variable "iam_path" {
description = "If provided, all IAM roles will be created on this path."
default = "/"
}
variable "cluster_endpoint_private_access" {
description = "Indicates whether or not the Amazon EKS private API server endpoint is enabled."
default = false
}
variable "cluster_endpoint_public_access" {
description = "Indicates whether or not the Amazon EKS public API server endpoint is enabled."
default = true
}