Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion aws/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ See the [provided example](/examples/aws/) for a demonstration of this modules u

| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:--------:|
| <a name="input_autoscaler_version"></a> [autoscaler\_version](#input\_autoscaler\_version) | n/a | `string` | `"1.21.1"` | no |
| <a name="input_autoscaler_version"></a> [autoscaler\_version](#input\_autoscaler\_version) | n/a | `string` | `"1.33.1"` | no |
| <a name="input_cluster_name"></a> [cluster\_name](#input\_cluster\_name) | n/a | `string` | n/a | yes |
| <a name="input_cluster_version"></a> [cluster\_version](#input\_cluster\_version) | Kubernetes cluster version | `string` | `"1.33"` | no |
| <a name="input_dashboard_default_namespace"></a> [dashboard\_default\_namespace](#input\_dashboard\_default\_namespace) | The default namespace to show when logging into the dashboard | `string` | `"default"` | no |
Expand Down
22 changes: 12 additions & 10 deletions aws/eks.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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
}