How to enable two-factor Authentication on my Firebase Console

Viewed 2144

I would like to enable 2FA when I log into my Firebase console. I read that Firebase supports multi-factor authentication for users in Firebase Auth, but I would like to enable it only for logging into my Firebase console to manage my Firebase projects.

Is it possible to enable 2FA only on my Firebase Console?

1 Answers

Multi-factor authentication is currently only available in Google's Cloud Identity Platform, not in Firebase Authentication. While the two products are closely related, this is one place where they are different.

To use MFA, you'll have to upgrade to the paid Google Cloud Identity Platform. You'll still be using the Firebase SDKs in your app, so this change doesn't affect the app you send to your users.

For more information, see:

Related