From 24cc303cba07877d90c890b31f619a0371d2d96a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 8 Oct 2025 22:31:26 +0000 Subject: [PATCH 1/2] terraform-docs: automated action --- aws/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aws/README.md b/aws/README.md index bf2e7e6..6ebd2b3 100644 --- a/aws/README.md +++ b/aws/README.md @@ -49,7 +49,7 @@ See the [provided example](/examples/aws/) for a demonstration of this modules u | Name | Description | Type | Default | Required | |------|-------------|------|---------|:--------:| -| [autoscaler\_version](#input\_autoscaler\_version) | n/a | `string` | `"1.21.1"` | no | +| [autoscaler\_version](#input\_autoscaler\_version) | n/a | `string` | `"1.33.1"` | no | | [cluster\_name](#input\_cluster\_name) | n/a | `string` | n/a | yes | | [cluster\_version](#input\_cluster\_version) | Kubernetes cluster version | `string` | `"1.33"` | no | | [dashboard\_default\_namespace](#input\_dashboard\_default\_namespace) | The default namespace to show when logging into the dashboard | `string` | `"default"` | no | From 1919de781c0ae362b5273acc3530c5a6f4d8b54d Mon Sep 17 00:00:00 2001 From: cookersjs Date: Thu, 9 Oct 2025 14:02:58 -0700 Subject: [PATCH 2/2] Add back addons and remove alg_ingress_controller --- aws/eks.tf | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/aws/eks.tf b/aws/eks.tf index 653e663..c760fda 100644 --- a/aws/eks.tf +++ b/aws/eks.tf @@ -79,6 +79,18 @@ module "eks" { } enabled_log_types = ["api", "audit", "authenticator", "controllerManager", "scheduler"] + addons = { + vpc-cni = { + most_recent = true + } + coredns = { + most_recent = true + } + kube-proxy = { + most_recent = true + } + } + eks_managed_node_groups = { services = { name = "services" @@ -322,13 +334,3 @@ module "eks_aws_auth" { } -module "alb_ingress_controller" { - depends_on = [module.eks.cluster_name] - source = "iplabs/alb-ingress-controller/kubernetes" - version = "3.4.0" - k8s_cluster_type = "eks" - k8s_namespace = "kube-system" - aws_region_name = data.aws_region.current.name - k8s_cluster_name = module.eks.cluster_name -} -