Skip to content

Commit

Permalink
Remove trailing slash from service url, was bother OTEL
Browse files Browse the repository at this point in the history
  • Loading branch information
mcgin314 committed Mar 6, 2025
1 parent 14f86e0 commit 020acb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
locals {
gateway_internal_hostname = format("loki-gateway.%v.svc.cluster.local", var.namespace)
gateway_internal_port_number = "80"
gateway_internal_url = format("http://%v:%v/", local.gateway_internal_hostname, local.gateway_internal_port_number)
gateway_internal_url = format("http://%v:%v", local.gateway_internal_hostname, local.gateway_internal_port_number)
}

locals {
Expand Down

0 comments on commit 020acb8

Please sign in to comment.