My file upload to a Cloud Storage bucket only happen from the Firebase console. What Cloud Storage rule would allow only my Firebase function in the same project to read/write to the bucket?
service firebase.storage {
match /b/{bucket}/o {
match /{allPaths=**} {
???
}
}
}