From c3feefa50dc7428f1f930de2a040b7c527345229 Mon Sep 17 00:00:00 2001 From: Zvika Nadav Date: Tue, 28 Jun 2022 16:12:06 -0500 Subject: [PATCH] fix: enable cluster log types upstream example (#702) * fix: enable cluster log types upstream example * fix: correct var name --- examples/upstream-with-k8s-addons/main.tf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/examples/upstream-with-k8s-addons/main.tf b/examples/upstream-with-k8s-addons/main.tf index e39cf3d8f5..17232751d1 100644 --- a/examples/upstream-with-k8s-addons/main.tf +++ b/examples/upstream-with-k8s-addons/main.tf @@ -58,6 +58,8 @@ module "eks" { vpc_id = module.vpc.vpc_id subnet_ids = module.vpc.private_subnets + cluster_enabled_log_types = ["api", "audit", "authenticator", "controllerManager", "scheduler"] + eks_managed_node_group_defaults = { instance_types = ["m6i.large", "m5.large", "m5n.large", "m5zn.large"] create_security_group = false