Skip to content

Commit

Permalink
Merge pull request #28 from radiant-maxar/release-0.7.3
Browse files Browse the repository at this point in the history
Release 0.7.3
  • Loading branch information
jbronn authored Jun 6, 2024
2 parents a2b39f9 + 255b66c commit 316fc13
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 15 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.0"
version = "~> 5.39.1"

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.0"
version = "~> 5.39.1"

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.0"
version = "~> 5.39.1"

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.0"
version = "~> 5.39.1"

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.8.5"
version = "~> 20.13.1"

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.0"
version = "~> 5.39.1"

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.8.5"
version = "~> 20.13.1"

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.0"
version = "~> 5.39.1"

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

Expand Down
12 changes: 6 additions & 6 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.14.5"
default = "1.15.0"
description = "Version of cert-manager to install."
type = string
}
Expand Down Expand Up @@ -200,7 +200,7 @@ variable "crossplane_values" {
}

variable "crossplane_version" {
default = "1.15.2"
default = "1.16.0"
description = "Version of Crossplane Helm chart 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.3"
default = "3.0.4"
description = "Version of the EFS CSI storage driver to install."
type = string
}
Expand Down Expand Up @@ -420,7 +420,7 @@ variable "karpenter_values" {
variable "karpenter_version" {
description = "Version of Karpenter Helm chart to install on the EKS cluster."
type = string
default = "0.36.1"
default = "0.37.0"
}

variable "karpenter_wait" {
Expand Down Expand Up @@ -508,7 +508,7 @@ variable "kube_proxy_options" {
}

variable "kubernetes_version" {
default = "1.29"
default = "1.30"
description = "Kubernetes version to use for the EKS cluster."
type = string
}
Expand Down Expand Up @@ -544,7 +544,7 @@ variable "lb_controller_values" {
}

variable "lb_controller_version" {
default = "1.7.1"
default = "1.8.1"
description = "Version of the AWS Load Balancer Controller chart 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.0"
version = "~> 5.39.1"

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

Expand Down

0 comments on commit 316fc13

Please sign in to comment.