Google Cloud Bigtable App Profile

This page shows how to write Terraform for Cloud Bigtable App Profile and write them securely.

google_bigtable_app_profile (Terraform)

The App Profile in Cloud Bigtable can be configured in Terraform with the resource name google_bigtable_app_profile. The following sections describe 1 example of how to use the resource and its parameters.

Example Usage from GitHub

main.tf#L7
resource "google_bigtable_app_profile" "this" {
  app_profile_id                = var.app_profile_id
  description                   = var.description
  ignore_warnings               = var.ignore_warnings
  instance                      = var.instance
  multi_cluster_routing_use_any = var.multi_cluster_routing_use_any

Review your Terraform file for Google best practices

Shisho Cloud, our free checker to make sure your Terraform configuration follows best practices, is available (beta).

Parameters

The unique name of the app profile in the form '[_a-zA-Z0-9][-_.a-za-z0-9]*'.

Long form description of the use case for this app profile.

If true, ignore safety checks when deleting/updating the app profile.

The name of the instance to create the app profile within.

If true, read/write requests are routed to the nearest cluster in the instance, and will fail over to the nearest cluster that is available in the event of transient errors or delays. Clusters in a region are considered equidistant. Choosing this option sacrifices read-your-writes consistency to improve availability.

  • name optional computed - string

The unique name of the requested app profile. Values are of the form 'projects/<project>/instances/<instance>/appProfiles/<appProfileId>'.

Explanation in Terraform Registry

App profile is a configuration object describing how Cloud Bigtable should treat traffic from a particular end user application. To get more information about AppProfile, see:

Frequently asked questions

What is Google Cloud Bigtable App Profile?

Google Cloud Bigtable App Profile is a resource for Cloud Bigtable of Google Cloud Platform. Settings can be wrote in Terraform.

Where can I find the example code for the Google Cloud Bigtable App Profile?

For Terraform, the niveklabs/google source code example is useful. See the Terraform Example section for further details.

security-icon

Automate config file reviews on your commits

Fix issues in your infrastructure as code with auto-generated patches.