From 00508dff2120aa1437875697711f91733b70a241 Mon Sep 17 00:00:00 2001 From: Michael Fraenkel Date: Tue, 3 Jan 2023 07:28:05 -0700 Subject: [PATCH] PLAT-5987: EKS 1.24 --- README.md | 2 +- variables.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0eadfffd..77bcbad4 100644 --- a/README.md +++ b/README.md @@ -117,7 +117,7 @@ aws s3 rb s3://"${AWS_TERRAFORM_REMOTE_STATE_BUCKET}" --force | [deploy\_id](#input\_deploy\_id) | Domino Deployment ID. | `string` | `"domino-eks"` | no | | [efs\_access\_point\_path](#input\_efs\_access\_point\_path) | Filesystem path for efs. | `string` | `"/domino"` | no | | [eks\_master\_role\_names](#input\_eks\_master\_role\_names) | IAM role names to be added as masters in eks. | `list(string)` | `[]` | no | -| [k8s\_version](#input\_k8s\_version) | EKS cluster k8s version. | `string` | `"1.23"` | no | +| [k8s\_version](#input\_k8s\_version) | EKS cluster k8s version. | `string` | `"1.24"` | no | | [kubeconfig\_path](#input\_kubeconfig\_path) | fully qualified path name to write the kubeconfig file | `string` | `""` | no | | [number\_of\_azs](#input\_number\_of\_azs) | Number of AZ to distribute the deployment, EKS needs at least 2. | `number` | `3` | no | | [private\_cidr\_network\_bits](#input\_private\_cidr\_network\_bits) | Number of network bits to allocate to the private subnet. i.e /19 -> 8,192 IPs. | `number` | `19` | no | diff --git a/variables.tf b/variables.tf index fc5378ce..a7a27a1f 100755 --- a/variables.tf +++ b/variables.tf @@ -61,7 +61,7 @@ variable "tags" { variable "k8s_version" { type = string description = "EKS cluster k8s version." - default = "1.23" + default = "1.24" } variable "public_cidr_network_bits" {