Skip to content

Commit

Permalink
Merge pull request #269 from sre-kr/feature/eks-logging-optional
Browse files Browse the repository at this point in the history
EKS Logging feature optional or disable it completely
  • Loading branch information
pst authored Feb 27, 2022
2 parents fd0edd1 + f979ae7 commit d05272f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aws/cluster/configuration.tf
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ locals {
disable_default_ingress = lookup(local.cfg, "disable_default_ingress", false)

enabled_cluster_log_types_lookup = lookup(local.cfg, "enabled_cluster_log_types", "api,audit,authenticator,controllerManager,scheduler")
enabled_cluster_log_types = split(",", local.enabled_cluster_log_types_lookup)
enabled_cluster_log_types = compact(split(",", local.enabled_cluster_log_types_lookup))

disable_openid_connect_provider = lookup(local.cfg, "disable_openid_connect_provider", false)

Expand Down

0 comments on commit d05272f

Please sign in to comment.