I have 50 realtime firebase database instances which are all identical.
Is it possible to get all my firebase functions to trigger on all instances, rather than just the default instance?
I know you can do this
exports.myWriteFunction = functions.database.instance('my-secondary-db').ref('path/to/data').onUpdate((snap, context) => { ... })
But I really want to run this function on every instance...