Reputation: 20714
I wish to connect Cloud Run to a Postgres database running in port 5432 in Compute Engine (not Cloud SQL). I assume from the documentation that this cannot be done. Is this really the case?
Upvotes: 0
Views: 600
Reputation: 75910
All depend how do you want to reach your database.
Note: In both case, don't forget to set up your connexion pool equal to the concurrency param to save/preserve your database connexion. On the same concern, you can set up a max instance limit to not use too many connexion to your database.
Upvotes: 5