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

fix: Cert issuer version bump and path fix #108

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
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
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
Loading