Skip to content

Commit

Permalink
Merge pull request #21 from radiant-maxar/release-0.6.7
Browse files Browse the repository at this point in the history
Release 0.6.7
  • Loading branch information
jbronn authored Feb 5, 2024
2 parents a885edc + a85ac45 commit 9c76b3e
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 16 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.33.1"
version = "~> 5.34.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.33.1"
version = "~> 5.34.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.33.1"
version = "~> 5.34.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.33.1"
version = "~> 5.34.0"

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

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.33.1"
version = "~> 5.34.0"

role_name = "${var.cluster_name}-lb-role"
attach_load_balancer_controller_policy = true
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.33.1"
version = "~> 5.34.0"

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

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

variable "cert_manager_version" {
default = "1.13.3"
default = "1.14.0"
description = "Version of cert-manager to install."
type = string
}
Expand Down Expand Up @@ -357,18 +357,18 @@ variable "karpenter_values" {
default = {}
}

variable "karpenter_version" {
description = "Version of Karpenter Helm chart to install on the EKS cluster."
type = string
default = "0.33.2"
}

variable "karpenter_wait" {
description = "Wait for the Karpenter Helm chart installation to complete."
type = bool
default = true
}

variable "karpenter_version" {
description = "Version of Karpenter Helm chart to install on the EKS cluster."
type = string
default = "0.33.1"
}

variable "kms_manage" {
default = false
description = "Manage EKS KMS resource instead of the AWS module"
Expand Down Expand Up @@ -400,7 +400,7 @@ variable "kube_proxy_options" {
}

variable "kubernetes_version" {
default = "1.28"
default = "1.29"
description = "Kubernetes version to use for the EKS cluster."
type = string
}
Expand All @@ -424,7 +424,7 @@ variable "lb_controller_values" {
}

variable "lb_controller_version" {
default = "1.6.2"
default = "1.7.0"
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.33.1"
version = "~> 5.34.0"

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

Expand Down

0 comments on commit 9c76b3e

Please sign in to comment.