Splitting aws-auth and kubectl related resources as they are not related

This commit is contained in:
Max Williams
2018-07-09 10:53:14 +02:00
parent f385415c88
commit 1a1d92da66
4 changed files with 28 additions and 23 deletions

View File

@@ -22,8 +22,13 @@ variable "config_output_path" {
default = "./"
}
variable "configure_kubectl_session" {
description = "Configure the current session's kubectl to use the instantiated EKS cluster."
variable "write_kubeconfig" {
description = "Whether to write a kubeconfig file containing the cluster configuration"
default = true
}
variable "manage_aws_auth" {
description = "Whether to write and apply the aws-auth configmap file"
default = true
}