You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Firebase Functions are using the config to access secret API keys. According to the Firebase docs, not only is this the outdated way of accessing environment variables, but it's also insecure for sensitive API keys. Firebase ships with Secret Manager to allow us to securely access our secrets.
Have the functions use runWith and process.env. to access the API keys.
The text was updated successfully, but these errors were encountered:
Firebase Functions are using the
config
to access secret API keys. According to the Firebase docs, not only is this the outdated way of accessing environment variables, but it's also insecure for sensitive API keys. Firebase ships with Secret Manager to allow us to securely access our secrets.Have the functions use
runWith
andprocess.env.
to access the API keys.The text was updated successfully, but these errors were encountered: