Skip to content

Commit

Permalink
Merge pull request #30 from radiant-maxar/release-0.7.4
Browse files Browse the repository at this point in the history
Release 0.7.4
  • Loading branch information
jbronn authored Jul 17, 2024
2 parents d24542b + d779256 commit 7d1f482
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion cert-manager.tf
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ locals {
module "cert_manager_irsa" {
count = var.cert_manager ? 1 : 0
source = "terraform-aws-modules/iam/aws//modules/iam-role-for-service-accounts-eks"
version = "~> 5.39.1"
version = "~> 5.41.0"

role_name = "${var.cluster_name}-cert-manager-role"

Expand Down
2 changes: 1 addition & 1 deletion crossplane.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
module "crossplane_irsa" {
count = var.crossplane && var.crossplane_irsa ? 1 : 0
source = "terraform-aws-modules/iam/aws//modules/iam-role-for-service-accounts-eks"
version = "~> 5.39.1"
version = "~> 5.41.0"

role_name = "${var.cluster_name}-crossplane-role"

Expand Down
2 changes: 1 addition & 1 deletion ebs-csi.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
module "eks_ebs_csi_driver_irsa" {
count = var.ebs_csi_driver ? 1 : 0
source = "terraform-aws-modules/iam/aws//modules/iam-role-for-service-accounts-eks"
version = "~> 5.39.1"
version = "~> 5.41.0"

role_name = "${var.cluster_name}-ebs-csi-role"
attach_ebs_csi_policy = true
Expand Down
2 changes: 1 addition & 1 deletion efs-csi.tf
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ resource "aws_efs_mount_target" "eks_efs_private" {
module "eks_efs_csi_driver_irsa" {
count = var.efs_csi_driver ? 1 : 0
source = "terraform-aws-modules/iam/aws//modules/iam-role-for-service-accounts-eks"
version = "~> 5.39.1"
version = "~> 5.41.0"

role_name = "${var.cluster_name}-efs-csi-driver-role"

Expand Down
2 changes: 1 addition & 1 deletion karpenter.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module "karpenter" {
count = var.karpenter ? 1 : 0
source = "terraform-aws-modules/eks/aws//modules/karpenter"
version = "~> 20.13.1"
version = "~> 20.19.0"

cluster_name = var.cluster_name
enable_irsa = true
Expand Down
2 changes: 1 addition & 1 deletion lb-controller.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
module "eks_lb_irsa" {
count = var.lb_controller ? 1 : 0
source = "terraform-aws-modules/iam/aws//modules/iam-role-for-service-accounts-eks"
version = "~> 5.39.1"
version = "~> 5.41.0"

role_name = "${var.cluster_name}-lb-role"
attach_load_balancer_controller_policy = true
Expand Down
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ locals {
# EKS Cluster
module "eks" { # tfsec:ignore:aws-ec2-no-public-egress-sgr tfsec:ignore:aws-eks-no-public-cluster-access tfsec:ignore:aws-eks-no-public-cluster-access-to-cidr
source = "terraform-aws-modules/eks/aws"
version = "~> 20.13.1"
version = "~> 20.19.0"

cluster_name = var.cluster_name
cluster_version = var.kubernetes_version
Expand Down
2 changes: 1 addition & 1 deletion s3-csi.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ module "eks_s3_csi_driver_irsa" {
count = var.s3_csi_driver ? 1 : 0

source = "terraform-aws-modules/iam/aws//modules/iam-role-for-service-accounts-eks"
version = "~> 5.39.1"
version = "~> 5.41.0"

role_name = "${var.cluster_name}-s3-csi-driver-role"

Expand Down
4 changes: 2 additions & 2 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ variable "cert_manager_values" {
}

variable "cert_manager_version" {
default = "1.15.0"
default = "1.15.1"
description = "Version of cert-manager to install."
type = string
}
Expand Down Expand Up @@ -305,7 +305,7 @@ variable "efs_csi_driver_values" {
}

variable "efs_csi_driver_version" {
default = "3.0.4"
default = "3.0.6"
description = "Version of the EFS CSI storage driver to install."
type = string
}
Expand Down
2 changes: 1 addition & 1 deletion vpc-cni.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
module "eks_vpc_cni_irsa" {
count = var.vpc_cni ? 1 : 0
source = "terraform-aws-modules/iam/aws//modules/iam-role-for-service-accounts-eks"
version = "~> 5.39.1"
version = "~> 5.41.0"

role_name = "${var.cluster_name}-vpc-cni-role"

Expand Down

0 comments on commit 7d1f482

Please sign in to comment.