'Is there a way to add email/pass identity provider

I'm looking for a way to add Identity Providers on GCP Identity Platform, which will be used by a Firebase application.

I want to add the following identity providers:

  • email/password
  • google

The closest I found for email/pass is this:

resource "google_identity_platform_tenant" "tenant" {
  display_name          = "tenant"
  allow_password_signup = true
}

However, I don't want to create a tenant.

What's the best solution to this?



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source