From 020acb8e6d6c84df66cecfa411e775544b31c2ef Mon Sep 17 00:00:00 2001 From: mcgin314 Date: Thu, 6 Mar 2025 17:03:22 -0500 Subject: [PATCH] Remove trailing slash from service url, was bother OTEL --- main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.tf b/main.tf index 282cbd1..368566e 100644 --- a/main.tf +++ b/main.tf @@ -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 {