Search code examples
angularfirebasegoogle-cloud-firestorefirebase-authenticationangularfire

All firebase projects returning 'Missing or insufficient permissions'


Despite having changed my rules to the below, I am getting FirebaseError: Missing or insufficient permissions. Are there any other reasons firestore would return this error?

rules_version = '2';
service cloud.firestore {
  match /databases/{database}/documents {

    match /{document=**} {
      allow read, write;
    }
  }
}

Oddly, having checked other projects also live, I'm getting this error in ALL firebase projects, even ones I haven't changed. I haven't reached any quota limits and there's nothing out of the ordinary in the firebase console. I have also tried accessing from a VPN to change my IP to no avail.


Solution

  • It's an ongoing issue on Google's Firebase end:

    https://status.firebase.google.com/ https://status.firebase.google.com/incidents/JH8hiSsfnSZHMdZqFTaC

    I don't think you can do anything except wait for Google's resolution.