Skip to content

Commit

Permalink
chore: Update EKS clusters to 1.29 in Terraform configs (#1789)
Browse files Browse the repository at this point in the history
The current 1.28 version will reach end of standard support on November 26, 2024. The latest available version is 1.30, but cluster version upgrades must be done one minor version at a time.

Unlike GKE, EKS does not appear to have support for automatic upgrades.
  • Loading branch information
SanjayVas authored Aug 30, 2024
1 parent aac71d8 commit cba6e31
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/terraform/aws/cmms/duchies.tf
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ module "clusters" {

aws_region = var.aws_region
cluster_name = "${each.key}-duchy"
cluster_version = "1.28"
cluster_version = "1.29"
kms_key_administrators = ["arn:aws:iam::${data.aws_caller_identity.current.account_id}:root"]
control_plane_subnet_ids = module.vpc.intra_subnets
subnet_ids = module.vpc.private_subnets
Expand Down
2 changes: 1 addition & 1 deletion src/main/terraform/aws/examples/duchy/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ module "cluster" {

aws_region = var.aws_region
cluster_name = var.duchy_name
cluster_version = "1.28"
cluster_version = "1.29"
kms_key_administrators = ["arn:aws:iam::${data.aws_caller_identity.current.account_id}:root"]
control_plane_subnet_ids = module.vpc.intra_subnets
subnet_ids = module.vpc.private_subnets
Expand Down

0 comments on commit cba6e31

Please sign in to comment.