Skip to content

Commit

Permalink
updated aws eks modules
Browse files Browse the repository at this point in the history
  • Loading branch information
kvvit committed Dec 25, 2024
1 parent 8be2c5f commit f5590b1
Show file tree
Hide file tree
Showing 3 changed files with 87 additions and 95 deletions.
6 changes: 3 additions & 3 deletions terraform/modules/aws-eks/main.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#tfsec:ignore:aws-vpc-no-public-egress-sgr tfsec:ignore:aws-eks-enable-control-plane-logging tfsec:ignore:aws-eks-encrypt-secrets tfsec:ignore:aws-eks-no-public-cluster-access tfsec:ignore:aws-eks-no-public-cluster-access-to-cidr
module "eks" {
source = "terraform-aws-modules/eks/aws"
version = "20.20.0"
version = "20.31.6"

cluster_name = var.name
cluster_version = var.eks_cluster_version
Expand Down Expand Up @@ -131,7 +131,7 @@ module "eks" {

module "vpc_cni_irsa" {
source = "terraform-aws-modules/iam/aws//modules/iam-role-for-service-accounts-eks"
version = "5.39.1"
version = "5.48.0"

role_name = "${var.name}-vpc-cni"
attach_vpc_cni_policy = true
Expand All @@ -149,7 +149,7 @@ module "vpc_cni_irsa" {

module "aws_ebs_csi_driver" {
source = "terraform-aws-modules/iam/aws//modules/iam-role-for-service-accounts-eks"
version = "5.39.1"
version = "5.48.0"

role_name = "${var.name}-aws-ebs-csi-driver"
attach_ebs_csi_policy = true
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion terragrunt/ACCOUNT_ID/us-east-1/demo/env.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ allowed_ips:
vpc_cidr: "10.100.0.0/16"
single_nat_gateway: true

eks_cluster_version: "1.30"
eks_cluster_version: "1.31"

eks_karpenter_nodepools:
- apiVersion: karpenter.sh/v1
Expand Down

0 comments on commit f5590b1

Please sign in to comment.