From cbb5c865f907ab5db82fbbd157699d8c44632ba3 Mon Sep 17 00:00:00 2001 From: Mike <127526991+mikesantangelo@users.noreply.github.com> Date: Fri, 12 Apr 2024 09:57:03 -0400 Subject: [PATCH] Batiai 2402: Update to EKS 1.28 (#146) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * BATIAI-2402: Update to EKS 1.28 * [pre-commit.ci] pre-commit autoupdate (#144) updates: - [github.com/antonbabenko/pre-commit-terraform: v1.85.0 → v1.88.4](https://github.com/antonbabenko/pre-commit-terraform/compare/v1.85.0...v1.88.4) Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> * [pre-commit.ci lite] apply automatic fixes --------- Co-authored-by: Mike Santangelo Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: pre-commit-ci-lite[bot] <117423508+pre-commit-ci-lite[bot]@users.noreply.github.com> --- CHANGELOG.md | 3 +++ README.md | 2 +- variables.tf | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d68974..2809752 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## 15.0.0 +* Upgrade to EKS 1.28 + ## 14.1.2 * bugfix: correct issue when no hosts are provided diff --git a/README.md b/README.md index dc35bda..c948407 100644 --- a/README.md +++ b/README.md @@ -163,7 +163,7 @@ Note that this example may create resources which cost money. Run `terraform des | [cluster\_enabled\_log\_types](#input\_cluster\_enabled\_log\_types) | A list of the desired control plane logging to enable. For more information, see Amazon EKS Control Plane Logging documentation (https://docs.aws.amazon.com/eks/latest/userguide/control-plane-logs.html) | `list(string)` |
[
"api",
"audit",
"authenticator",
"controllerManager",
"scheduler"
]
| no | | [cluster\_name](#input\_cluster\_name) | n/a | `string` | n/a | yes | | [cluster\_security\_group\_additional\_rules](#input\_cluster\_security\_group\_additional\_rules) | Map of security group rules to attach to the cluster security group, as you cannot change cluster security groups without replacing the instance | `map(any)` | `{}` | no | -| [cluster\_version](#input\_cluster\_version) | n/a | `string` | `"1.27"` | no | +| [cluster\_version](#input\_cluster\_version) | n/a | `string` | `"1.28"` | no | | [configmap\_custom\_roles](#input\_configmap\_custom\_roles) | A custom list of IAM role names to include in the aws-auth configmap | `list(string)` | `[]` | no | | [create\_alb\_proxy](#input\_create\_alb\_proxy) | Create an Application Load Balancer proxy to live in front of the K8s ALB and act as a proxy from the public Internet | `bool` | `false` | no | | [create\_alb\_shared](#input\_create\_alb\_shared) | Creaes an ALB in the shared subnet | `bool` | `false` | no | diff --git a/variables.tf b/variables.tf index 027e035..7426b95 100644 --- a/variables.tf +++ b/variables.tf @@ -5,7 +5,7 @@ variable "environment" { } variable "cluster_version" { - default = "1.27" + default = "1.28" type = string }