Skip to content

Commit

Permalink
fix: Cert issuer version bump and path fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zacharyblasczyk committed Oct 18, 2024
1 parent 38b6446 commit 741a9ba
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ module "cert_manager" {

ingress_class = "azure/application-gateway"
cert_manager_email = "[email protected]"
cert_manager_chart_version = "v1.9.1"
cert_manager_chart_version = "v1.16.1"
tags = var.tags

depends_on = [module.app_aks]
Expand Down
7 changes: 3 additions & 4 deletions modules/cert_manager/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,9 @@ resource "helm_release" "cert_manager" {
# solution.
# https://stackoverflow.com/questions/69765121/how-to-avoid-clusterissuer-dependency-on-helm-cert-manager-crds-in-terraform-pla
resource "helm_release" "cert_issuer" {
name = "cert-issuer"
chart = "cert-issuer"
repository = path.module
namespace = local.default_namespace
name = "cert-issuer"
chart = "${path.module}/cert-issuer"
namespace = local.default_namespace

set {
name = "fullnameOverride"
Expand Down

0 comments on commit 741a9ba

Please sign in to comment.