From 228c79dd89867562fd6f8cda6d98f058533009ae Mon Sep 17 00:00:00 2001 From: Anthony Zawacki Date: Tue, 12 Sep 2023 11:34:55 -0400 Subject: [PATCH] component name not needed in output variables. --- outputs.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/outputs.tf b/outputs.tf index 8b33154..40f2922 100644 --- a/outputs.tf +++ b/outputs.tf @@ -1,4 +1,4 @@ -output "keycloak_public_url" { +output "public_url" { description = "The URL to use to retrieve the OpenID configuration" value = format("https://%v.%v/", var.keycloak_hostname, var.cluster_domain) }