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 |
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
-}
-