bt

Bigtable

DatabasesGCP
General

General information about the service.

Description

Google Cloud Bigtable is a fully managed, scalable NoSQL database for large analytical and operational workloads.

Service ID

bigtableadmin.googleapis.com

Resource Pattern

projects/{project}/instances/{instance}

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

bt-{workload}-{environment}

Length

1-63

Valid Characters

Lowercase letters, numbers, hyphens

Scope

project

Code

Deploy your infrastructure as code using your preferred tooling.

Official DocumentationTerraform
terraform
1resource "google_bigtable_instance" "main" {
2 name = "bt-${var.environment}"
3
4 cluster {
5 cluster_id = "bt-${var.environment}-c1"
6 num_nodes = 1
7 storage_type = "SSD"
8 }
9}
Utilities

Utilities to support app deployment or configuration.