Skip to content

Commit

Permalink
Add missing variables for EKS cluster mmodule
Browse files Browse the repository at this point in the history
  • Loading branch information
OlamideOl1 committed Dec 16, 2024
1 parent 805bdd1 commit 5f805a9
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
1 change: 1 addition & 0 deletions aws/cluster/modules/eks-cluster/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
12 changes: 12 additions & 0 deletions aws/cluster/variables.tf
Original file line number Diff line number Diff line change
@@ -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 = []
Expand Down

0 comments on commit 5f805a9

Please sign in to comment.