From 1d1ab777e26c2ecf35e6b9e3b10c60418090055e Mon Sep 17 00:00:00 2001 From: "David.Houck" Date: Wed, 13 Nov 2024 15:35:57 -0500 Subject: [PATCH] Update default K8s version variable, update kubectl, k8s version document refs Signed-off-by: David.Houck --- README.md | 2 +- docs/CONFIG-VARS.md | 2 +- variables.tf | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 3a317d9..6187ccf 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ The following are also required: #### Terraform Requirements: - [Terraform](https://www.terraform.io/downloads.html) v1.9.6 -- [kubectl](https://kubernetes.io/docs/tasks/tools/install-kubectl/) - v1.29.8 +- [kubectl](https://kubernetes.io/docs/tasks/tools/install-kubectl/) - v1.30.6 - [jq](https://stedolan.github.io/jq/) v1.6 - [AWS CLI](https://aws.amazon.com/cli) (optional; useful as an alternative to the AWS Web Console) v2.17.58 diff --git a/docs/CONFIG-VARS.md b/docs/CONFIG-VARS.md index 5e73632..19420fd 100644 --- a/docs/CONFIG-VARS.md +++ b/docs/CONFIG-VARS.md @@ -257,7 +257,7 @@ Custom policy: |
Name
|
Description
|
Type
|
Default
|
Notes
| | :--- | :--- | :--- | :--- | :--- | | create_static_kubeconfig | Allows the user to create a provider- or service account-based kubeconfig file | bool | true | A value of `false` defaults to using the cloud provider's mechanism for generating the kubeconfig file. A value of `true` creates a static kubeconfig that uses a service account and cluster role binding to provide credentials. | -| kubernetes_version | The EKS cluster Kubernetes version | string | "1.29" | | +| kubernetes_version | The EKS cluster Kubernetes version | string | "1.30" | | | create_jump_vm | Create bastion host (jump VM) | bool | true| | | create_jump_public_ip | Add public IP address to jump VM | bool | true | | | jump_vm_admin | OS admin user for the jump VM | string | "jumpuser" | | diff --git a/variables.tf b/variables.tf index afb628c..713867c 100644 --- a/variables.tf +++ b/variables.tf @@ -149,7 +149,7 @@ variable "efs_throughput_rate" { variable "kubernetes_version" { description = "The EKS cluster Kubernetes version." type = string - default = "1.29" + default = "1.30" } variable "tags" {