From 42de2138f26fe8aa06777e38aa7a36ea02bdb3c6 Mon Sep 17 00:00:00 2001
From: Matthew Baggett <matthew@baggett.me>
Date: Thu, 16 Jan 2025 12:32:47 +0100
Subject: [PATCH] Fix endpoint output

---
 docker/socket-proxy/output.tf | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docker/socket-proxy/output.tf b/docker/socket-proxy/output.tf
index 5e4b957..33f7d02 100644
--- a/docker/socket-proxy/output.tf
+++ b/docker/socket-proxy/output.tf
@@ -5,5 +5,5 @@ output "network" {
   value = module.network
 }
 output "endpoint" {
-  value = module.service.endpoint
+  value = "http://${module.service.name}"
 }
\ No newline at end of file