From 4d528cb7c7fba040157786fdb394160cddb8267f Mon Sep 17 00:00:00 2001 From: Guillaume Belanger Date: Mon, 4 Mar 2024 07:51:10 -0500 Subject: [PATCH] chore: add logging integration to terraform (#113) --- terraform/outputs.tf | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/terraform/outputs.tf b/terraform/outputs.tf index 159c0764..52401cd7 100644 --- a/terraform/outputs.tf +++ b/terraform/outputs.tf @@ -22,3 +22,10 @@ output "fiveg_n4_endpoint" { description = "Name of the endpoint used to provide information on connectivity to the N4 plane." value = "fiveg_n4" } + +# Requires integration endpoints + +output "logging_endpoint" { + description = "Name of the endpoint used to integrate with the Logging provider." + value = "logging" +}