diff --git a/internal/clients/http/client.go b/internal/clients/http/client.go index 1977580..b99d229 100644 --- a/internal/clients/http/client.go +++ b/internal/clients/http/client.go @@ -72,6 +72,7 @@ func (hc *client) SendRequest(ctx context.Context, method string, url string, bo Transport: &http.Transport{ // #nosec G402 TLSClientConfig: &tls.Config{InsecureSkipVerify: skipTLSVerify}, + Proxy: http.ProxyFromEnvironment, // Use proxy settings from environment }, Timeout: hc.timeout, }