I'm working on the implementation of some Cloud Functions for Firebase and one of these require some configuration to call external providers.
I was able to successfully configure these values using firebase functions:config:set key="value"
but I was wondering what are the actors able to read this value.
Is the function the only capable of read it? Should I encrypt "value"
? At the end will have to have the key in order to decrypt it.
Thanks