From 5f805a9078599ad6e44af465b7378eadf8c7c8fd Mon Sep 17 00:00:00 2001 From: Olamide Date: Mon, 16 Dec 2024 17:36:09 +0100 Subject: [PATCH] Add missing variables for EKS cluster mmodule --- aws/cluster/modules/eks-cluster/variables.tf | 1 + aws/cluster/variables.tf | 12 ++++++++++++ 2 files changed, 13 insertions(+) diff --git a/aws/cluster/modules/eks-cluster/variables.tf b/aws/cluster/modules/eks-cluster/variables.tf index 85fc70fe..b1373fcb 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 f2818dce..c5823abc 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 = []