Skip to content

Commit

Permalink
fix: update acm, route52, eks, karpenter modules
Browse files Browse the repository at this point in the history
  • Loading branch information
kvvit committed Dec 25, 2024
1 parent 2bb85aa commit 5e37691
Show file tree
Hide file tree
Showing 9 changed files with 201 additions and 211 deletions.
2 changes: 1 addition & 1 deletion terraform/modules/aws-acm/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ data "aws_acm_certificate" "main" {

module "acm" {
source = "terraform-aws-modules/acm/aws"
version = "5.0.1"
version = "5.1.1"

create_certificate = var.create_acm_certificate

Expand Down
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
2 changes: 1 addition & 1 deletion terraform/modules/aws-r53/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ data "aws_route53_zone" "main" {

module "r53_zone" {
source = "terraform-aws-modules/route53/aws//modules/zones"
version = "2.11.1"
version = "4.1.0"

create = var.create_r53_zone

Expand Down
2 changes: 1 addition & 1 deletion terraform/modules/k8s-karpenter/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ module "this" {
count = local.karpenter.enabled ? 1 : 0

source = "terraform-aws-modules/eks/aws//modules/karpenter"
version = "20.17.2"
version = "20.31.6"

cluster_name = var.eks_cluster_id

Expand Down

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

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

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

Loading

0 comments on commit 5e37691

Please sign in to comment.