From fd1365899a2a10ce61fbb26c770bc7cb1feb312a Mon Sep 17 00:00:00 2001 From: Anthony Zawacki Date: Tue, 12 Sep 2023 11:16:06 -0400 Subject: [PATCH] Renamed outputs from private_url to internal_url to match everything else. --- outputs.tf | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/outputs.tf b/outputs.tf index 5c57557..5e2246c 100644 --- a/outputs.tf +++ b/outputs.tf @@ -1,35 +1,35 @@ -output "private_url" { +output "internal_url" { description = "The endpoint which can be used inside of the cluster to access loki-backend." value = format("http://loki-backend.%v.svc.cluster.local", local.ns) } -output "headless_private_url" { +output "headless_internal_url" { description = "The endpoint which can be used inside of the cluster to access headless-loki-backend." value = format("http://loki-backend-headless.%v.svc.cluster.local", local.ns) } -output "gateway_private_url" { +output "gateway_internal_url" { description = "The endpoint which can be used inside of the cluster to access loki-gateway." value = format("http://loki-backend-headless.%v.svc.cluster.local", local.ns) } -output "read_headless_private_url" { +output "read_headless_internal_url" { description = "The endpoint which can be used inside of the cluster to access loki-read-headless." value = format("http://loki-read-headless.%v.svc.cluster.local", local.ns) } -output "read_private_url" { +output "read_internal_url" { description = "The endpoint which can be used inside of the cluster to access loki-read." value = format("http://loki-read.%v.svc.cluster.local", local.ns) } -output "write_headless_private_url" { +output "write_headless_internal_url" { description = "The endpoint which can be used inside of the cluster to access loki-write-headless." value = format("http://loki-write-headless.%v.svc.cluster.local", local.ns) } -output "write_private_url" { +output "write_internal_url" { description = "The endpoint which can be used inside of the cluster to access loki-write." value = format("http://loki-write.%v.svc.cluster.local", local.ns) }