Merge pull request #46 from bti360/configurable-workstation-cidr

Configurable workstation cidr
This commit is contained in:
Brandon J. O'Connor
2018-06-30 15:53:11 -07:00
committed by GitHub
4 changed files with 8 additions and 1 deletions

View File

@@ -7,6 +7,11 @@ variable "cluster_security_group_id" {
default = ""
}
variable "workstation_cidr" {
description = "Override the default ingress rule that allows communication with the EKS cluster API. If not given, will use current IP/32. "
default = ""
}
variable "cluster_version" {
description = "Kubernetes version to use for the EKS cluster."
default = "1.10"