What is the best way to proxy requests with GCP, e.g. to hide secrets. Is it by making use of GCP API-Gateway which spawns a Load Balancer or by using a Load Balancer directly. Or are there any other ways?
A sample request to "transform" might be:
Client -> XXX (API-Gateway / Load Balancer) -> External Service
-> https://api.xxx.com/xxx -> https://api.xxx.com/xxx?secret=secret
Or is the most simple and most cost efficient way to spawn a GCP function to proxy requests?