So I have this GCP project that is linked to a Firebase project (so I could use Cloud Firestore instead of Datastore).
I wrote a Cloud Function (in Python) and when trying to deploy it via:
$ gcloud functions deploy hello1 --runtime python38 --trigger-http --allow-unauthenticated --region=us-central1
It takes forever and then gives this error:
ERROR: (gcloud.functions.deploy) OperationError: code=13, message=Failed to initialize region (action ID: c6a9e29e404f3d1e)
If I deploy the same function in any other project that doesn't have Firestore, it deploys just fine...
Is this a limitation? Or do I need to set anything else?