Skip to content

Commit

Permalink
enable namespace create
Browse files Browse the repository at this point in the history
  • Loading branch information
morga471 committed Mar 11, 2025
1 parent fbf13c1 commit 1d8c2ed
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,12 @@ locals {
}

resource "helm_release" "keycloak" {
chart = "keycloak"
name = var.service_name
repository = "${path.module}/charts"
timeout = 120
wait = true
chart = "keycloak"
name = var.service_name
repository = "${path.module}/charts"
create_namespace = true
timeout = 120
wait = true

namespace = var.namespace
values = [templatefile("${path.module}/keycloak-values.yaml.tmpl", {
Expand Down

0 comments on commit 1d8c2ed

Please sign in to comment.