From 3881743047cd533d87da8d0c2383d3f3aa4da9fd Mon Sep 17 00:00:00 2001 From: "Matthew C. Morgan" Date: Wed, 26 Feb 2025 18:33:42 -0500 Subject: [PATCH] update outputs --- README.md | 2 +- outputs.tf | 9 ++------- 2 files changed, 3 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 2513c02..7b56809 100644 --- a/README.md +++ b/README.md @@ -59,5 +59,5 @@ | [internal\_endpoint](#output\_internal\_endpoint) | The internal endpoint to use to access kiali | | [module\_name](#output\_module\_name) | The name of this module. | | [module\_version](#output\_module\_version) | The version of this module. | -| [public\_endpoint](#output\_public\_endpoint) | The public endpoint to use to access kiali | +| [public\_endpoint](#output\_public\_endpoint) | The endpoint at which keycloak can be reached from outside the cluster. | diff --git a/outputs.tf b/outputs.tf index 8664c39..f221287 100644 --- a/outputs.tf +++ b/outputs.tf @@ -1,11 +1,6 @@ - output "public_endpoint" { - description = "The public endpoint to use to access kiali" - value = { - hostname = local.public_hostname - port_number = local.public_port_number - url = local.public_url - } + description = "The endpoint at which keycloak can be reached from outside the cluster." + value = module.ingress_resources.service_url } output "internal_endpoint" {