Skip to content

Commit

Permalink
Merge pull request #10 from SCT-Engineering/bugfix-url
Browse files Browse the repository at this point in the history
Remove trailing slash from service url, was bothering OTEL
  • Loading branch information
mcgin314 committed Mar 6, 2025
2 parents 14f86e0 + 020acb8 commit f77d9c1
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 f77d9c1

Please sign in to comment.