I'm currently running two Cloud Run services (static web + web server).
The web server is connected to AlloyDB instance, which is all through a VPC. I have also set up Ingress Control to allow traffic from the vpc.
However, when I do set this Ingress Control, the static web Cloud Run (will just call it client) can't seem to connect to it. A status code of 403 raises and ends up showing just a CORS error (fastapi CORS is set and checked when Ingress Control is not set). The only odd error I've seen so far from Log Explorer is operationalError: SSL SysCall error: eof detected
which I can't seem to decipher.
The VPC is a must, since the web server is connected to AlloyDB. (I'm sure there are other ways, but I'd like to follow the current documented method of connecting within the same VPC network).
What could be the issue here?