diff --git a/aws/cluster/modules/eks-cluster/variables.tf b/aws/cluster/modules/eks-cluster/variables.tf index 85fc70f..b1373fc 100644 --- a/aws/cluster/modules/eks-cluster/variables.tf +++ b/aws/cluster/modules/eks-cluster/variables.tf @@ -3,6 +3,7 @@ variable "auth_mode" { description = "Authentiation mode associated with the cluster Access config" default = "API_AND_CONFIG_MAP" } + variable "bootstrap_cluster_creator_admin_permission" { type = bool description = "Bootstrap access config values to the cluster" diff --git a/aws/cluster/variables.tf b/aws/cluster/variables.tf index f2818dc..c5823ab 100644 --- a/aws/cluster/variables.tf +++ b/aws/cluster/variables.tf @@ -1,3 +1,15 @@ +variable "auth_mode" { + type = string + description = "Authentiation mode associated with the cluster Access config" + default = "API_AND_CONFIG_MAP" +} + +variable "bootstrap_cluster_creator_admin_permission" { + type = bool + description = "Bootstrap access config values to the cluster" + default = false +} + variable "enabled_cluster_log_types" { type = list(string) default = []