Skip to content

Commit

Permalink
fix chart paths
Browse files Browse the repository at this point in the history
  • Loading branch information
morga471 committed Apr 18, 2025
1 parent e88d6ae commit 448db6e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ resource "helm_release" "keycloak-db" {
version = var.postgresql_chart_version
name = "keycloak-db"
namespace = kubernetes_namespace.keycloak.metadata[0].name
repository = "${path.module}/charts/postgresql"
repository = "${path.module}/charts"
values = [file("${path.module}/keycloak-db-values.yaml")]
wait = true
timeout = 300
Expand Down Expand Up @@ -149,7 +149,7 @@ resource "helm_release" "keycloak" {
name = "keycloak"
namespace = kubernetes_namespace.keycloak.metadata[0].name
version = var.keycloak_chart_version
repository = "${path.module}/charts/keycloakx"
repository = "${path.module}/charts"
timeout = 300
depends_on = [helm_release.keycloak-db]

Expand Down

0 comments on commit 448db6e

Please sign in to comment.