From f4510ddb7db7001a65b2e3603507ee8f60b27066 Mon Sep 17 00:00:00 2001 From: "Matthew C. Morgan" Date: Wed, 12 Mar 2025 22:20:39 -0400 Subject: [PATCH] fix provider url --- kc_bootstrap.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kc_bootstrap.tf b/kc_bootstrap.tf index 60e4861..ca7c1ca 100644 --- a/kc_bootstrap.tf +++ b/kc_bootstrap.tf @@ -2,7 +2,7 @@ provider "keycloak" { client_id = var.keycloak_user client_secret = var.keycloak_password - url = "https://${module.ingress_resources.service_url}/auth" + url = "${module.ingress_resources.service_url}/auth" } # Create realm