Skip to content

Commit

Permalink
chore(deps): update remaining modules
Browse files Browse the repository at this point in the history
  • Loading branch information
lentidas committed Oct 10, 2024
1 parent 462d608 commit c6fc449
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion examples/eks/apps.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "helloworld_apps" {
source = "git::https://github.com/camptocamp/devops-stack-module-applicationset.git?ref=v3.0.0"
source = "git::https://github.com/camptocamp/devops-stack-module-applicationset.git?ref=v4.0.0"

dependency_ids = {
argocd = module.argocd.id
Expand Down
4 changes: 2 additions & 2 deletions examples/eks/csi_drivers.tf
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ resource "aws_efs_mount_target" "eks" {
}

module "efs" {
source = "git::https://github.com/camptocamp/devops-stack-module-efs-csi-driver.git?ref=v4.0.0"
source = "git::https://github.com/camptocamp/devops-stack-module-efs-csi-driver.git?ref=v5.0.0"

cluster_name = local.cluster_name
argocd_project = module.eks.cluster_name
Expand All @@ -52,7 +52,7 @@ module "efs" {
}

module "ebs" {
source = "git::https://github.com/camptocamp/devops-stack-module-ebs-csi-driver.git?ref=v3.6.0"
source = "git::https://github.com/camptocamp/devops-stack-module-ebs-csi-driver.git?ref=v4.0.0"

cluster_name = local.cluster_name
argocd_project = module.eks.cluster_name
Expand Down
16 changes: 8 additions & 8 deletions examples/eks/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ module "vpc" {
}

module "eks" {
source = "git::https://github.com/camptocamp/devops-stack-module-cluster-eks.git?ref=v3.3.0"
source = "git::https://github.com/camptocamp/devops-stack-module-cluster-eks.git?ref=v4.2.0"

cluster_name = local.cluster_name
kubernetes_version = local.kubernetes_version
Expand Down Expand Up @@ -75,7 +75,7 @@ module "oidc" {
}

module "argocd_bootstrap" {
source = "git::https://github.com/camptocamp/devops-stack-module-argocd.git//bootstrap?ref=v6.3.0"
source = "git::https://github.com/camptocamp/devops-stack-module-argocd.git//bootstrap?ref=v7.0.0"

argocd_projects = {
"${module.eks.cluster_name}" = {
Expand All @@ -87,7 +87,7 @@ module "argocd_bootstrap" {
}

module "metrics-server" {
source = "git::https://github.com/camptocamp/devops-stack-module-metrics-server.git?ref=v2.1.0"
source = "git::https://github.com/camptocamp/devops-stack-module-metrics-server.git?ref=v3.0.0"

argocd_project = module.eks.cluster_name

Expand All @@ -99,7 +99,7 @@ module "metrics-server" {
}

module "traefik" {
source = "git::https://github.com/camptocamp/devops-stack-module-traefik.git//eks?ref=v8.2.0"
source = "git::https://github.com/camptocamp/devops-stack-module-traefik.git//eks?ref=v9.0.0"

argocd_project = module.eks.cluster_name

Expand All @@ -112,7 +112,7 @@ module "traefik" {
}

module "cert-manager" {
source = "git::https://github.com/camptocamp/devops-stack-module-cert-manager.git//eks?ref=v8.6.0"
source = "git::https://github.com/camptocamp/devops-stack-module-cert-manager.git//eks?ref=v9.0.0"

cluster_name = module.eks.cluster_name
base_domain = module.eks.base_domain
Expand All @@ -131,7 +131,7 @@ module "cert-manager" {
}

module "loki-stack" {
source = "git::https://github.com/camptocamp/devops-stack-module-loki-stack.git//eks?ref=v9.0.0"
source = "git::https://github.com/camptocamp/devops-stack-module-loki-stack.git//eks?ref=v10.0.0"

argocd_project = module.eks.cluster_name

Expand All @@ -150,7 +150,7 @@ module "loki-stack" {
}

module "thanos" {
source = "git::https://github.com/camptocamp/devops-stack-module-thanos.git//eks?ref=v6.0.0"
source = "git::https://github.com/camptocamp/devops-stack-module-thanos.git//eks?ref=v7.0.0"

cluster_name = module.eks.cluster_name
base_domain = module.eks.base_domain
Expand Down Expand Up @@ -181,7 +181,7 @@ module "thanos" {
}

module "kube-prometheus-stack" {
source = "git::https://github.com/camptocamp/devops-stack-module-kube-prometheus-stack.git//eks?ref=v11.1.1"
source = "git::https://github.com/camptocamp/devops-stack-module-kube-prometheus-stack.git//eks?ref=v13.0.0"

cluster_name = module.eks.cluster_name
base_domain = module.eks.base_domain
Expand Down

0 comments on commit c6fc449

Please sign in to comment.