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" {