From bbb71c7bf6b9a0f8a7f9ef1bd6e48a9c579e8245 Mon Sep 17 00:00:00 2001 From: gatici Date: Wed, 14 Feb 2024 12:08:42 +0300 Subject: [PATCH] Fixing the fiveg_nrf endpoint name Signed-off-by: gatici --- terraform/outputs.tf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/terraform/outputs.tf b/terraform/outputs.tf index 4d7b512..e81efcf 100644 --- a/terraform/outputs.tf +++ b/terraform/outputs.tf @@ -10,15 +10,15 @@ output "app_name" { output "fiveg_nrf_endpoint" { description = "Name of the endpoint used to integrate with the NRF." - value = "fiveg-nrf" + value = "fiveg_nrf" } output "database_endpoint" { description = "Name of the endpoint used to integrate with the database." - value = "database" + value = "database" } output "certificates_endpoint" { description = "Name of the endpoint used to integrate with the TLS certificates provider." - value = "certificates" + value = "certificates" }