IaC Bazaar
Google CloudLive-tested

Cloud Bigtable Instance & Table

A single-cluster Cloud Bigtable instance (one 1-node SSD cluster, the smallest footprint) plus a table with column families, IAM-only access, optional CMEK, and deletion protection on.

terraformGoogle Cloud#gcp
gcp-bigtableterraform v1.7

Verification

Live-tested

Really deployed, verified, idempotent and destroyed in a cloud sandbox.

Conformance

  • Static validation (fmt · validate · tflint)
  • Security scan (Checkov)
  • Plan tests (mocked: validation rules · outputs)

Provenance

  • SHA-256 checksum
  • Signature (pending)

Functional

  • Live-tested — applied, verified, destroyed

Last verified 2026-06-30 · how we verify

Documentation

gcp-bigtable

Cloud Bigtable — a single-cluster instance (one 1-node SSD cluster, the smallest manually-sized footprint) plus a table with column families. Works with Terraform and OpenTofu (>= 1.6), Google provider >= 7.0, < 8.0.

Secure, cost-aware defaults:

  • One cluster, num_nodes = 1, storage_type = "SSD"
  • deletion_protection = true (drives both resources — see below)
  • IAM-only access (Bigtable has no public endpoint); optional CMEK
  • instance_type omitted (deprecated)

One switch, two spellings of deletion protection

Bigtable spells deletion protection differently per resource. This module hides that behind a single bool deletion_protection:

ResourceNative fieldDriven by
google_bigtable_instancedeletion_protection (bool)var.deletion_protection
google_bigtable_tabledeletion_protection (string PROTECTED/UNPROTECTED)var.deletion_protection ? "PROTECTED" : "UNPROTECTED"

force_destroy = true additionally clears any instance backups so they never block a destroy.

Requirements

  • Terraform or OpenTofu >= 1.6
  • hashicorp/google >= 7.0, < 8.0
  • APIs: bigtable.googleapis.com, bigtableadmin.googleapis.com

Verification

Static-validated (fmt, validate, tflint). Live apply/destroy testing pending cloud sandbox availability — see catalog status.

License

Commercial — IaC Bazaar EULA. © IaC Bazaar. Original work (not derived from a third-party module).

Usage code & full reference unlock after purchase

The complete copy-paste usage, the full input/output reference, and operational notes ship with your licence — shown here and bundled in the download.

  • Usage
  • Inputs
  • Outputs
  • Notes