0

I've changed my security rules in cloud firestore and I am not sure, if this is a good option:

rules_version = '2';
service cloud.firestore {
  match /databases/{database}/documents {
    match /{document=**} {
      allow read, write: if request.auth.uid != null;
    }
  }
}

Do you see any problems I might face if I leave it like this?

Frank van Puffelen
  • 499,950
  • 69
  • 739
  • 734
Lars
  • 45
  • 1
  • 5
  • 1
    What is your use case? These rules allow any logged in user to read/write/delete anything in database so thats not secure. – Dharmaraj Sep 26 '21 at 18:20

0 Answers0