Skip to content

Commit

Permalink
removed authentication_modehardcode value to local value
Browse files Browse the repository at this point in the history
  • Loading branch information
EC2 Default User committed Apr 19, 2024
1 parent 16bf77a commit 4d8a483
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ module "eks" {
vpc_id = module.vpc.vpc_id
subnet_ids = module.vpc.private_subnets

authentication_mode = "API"
authentication_mode = local.authentication_mode

# Cluster access entry
# To add the current caller identity as an administrator
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,4 +71,5 @@ variable "gitops_workload_path" {
variable "authentication_mode" {
description = "The authentication mode for the cluster. Valid values are CONFIG_MAP, API or API_AND_CONFIG_MAP"
type = string
default = "API"
}

0 comments on commit 4d8a483

Please sign in to comment.