I can't figure out the syntax to connect my AEF environment to multiple cloud_sql instances.
These are the two configs that I have tried:
beta_settings:
cloud_sql_instances:
- pore-gdic:europe-west1:a-django
- pore-gdic:europe-west1:a-airflow-5
Failed:
ERROR: (gcloud.app.deploy) Error Response: [13] Invalid Cloud SQL name: []
based on the response from this question: Connecting to multiple CloudSQL instances using Cloud sql proxy?
beta_settings:
cloud_sql_instances:
pore-gdic:europe-west1:a-django,pore-gdic:europe-west1:a-airflow-5
Doesn't fail on deployment, but doesn't work as a webpage at all.
Does anyone have a working solution to this problem.
For completeness, one db is running MySQL and the other postgres. So ports isn't an issue.