Skip to content

Commit

Permalink
Renamed outputs from private_url to internal_url to match everything …
Browse files Browse the repository at this point in the history
…else.
  • Loading branch information
zawac002 committed Sep 12, 2023
1 parent b46c6da commit fd13658
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions outputs.tf
Original file line number Diff line number Diff line change
@@ -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)
}
Expand Down

0 comments on commit fd13658

Please sign in to comment.