fb

Firebase

Business AppsGCP
General

General information about the service.

Description

Firebase is Google's comprehensive app development platform. It provides tools for building, improving, and growing mobile and web applications with features like authentication, hosting, and analytics.

Service ID

firebase.googleapis.com

Resource Pattern

projects/{project}

Chat

Powered by AI

Talk to this service to learn more about it.

Suggested questions:

Naming

The conventions, rules, and restrictions for naming this service.

Naming Convention

fb-{workload}-{env}

Length

4-63

Valid Characters

Lowercase letters, numbers, hyphens

Scope

global

Code

Deploy your infrastructure as code using your preferred tooling.

Official DocumentationTerraform
terraform
1resource "google_firebase_project" "main" {
2 provider = google-beta
3 project = var.project_id
4}
5
6resource "google_firebase_web_app" "main" {
7 provider = google-beta
8 project = var.project_id
9 display_name = "fb-${var.workload}-${var.environment}"
10}
Utilities

Utilities to support app deployment or configuration.