Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update terraform terraform-aws-modules/eks/aws to v20.8.4 - autoclosed #49

Merged
merged 1 commit into from
Mar 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions terraform/example/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ module "vpc_core" {

module "eks" {
source = "terraform-aws-modules/eks/aws"
version = "20.8.3"
version = "20.8.4"
cluster_name = local.core_cluster_name
cluster_version = "1.28"
create = local.create_cluster
Expand Down Expand Up @@ -150,7 +150,7 @@ module "eks" {
module "karpenter" {
count = local.create_cluster ? 1 : 0
source = "terraform-aws-modules/eks/aws//modules/karpenter"
version = "20.8.3"
version = "20.8.4"

cluster_name = module.eks.cluster_name
enable_irsa = true
Expand Down