From fbfdd476028194392b9d9df9f6e37a6b4fae224a Mon Sep 17 00:00:00 2001 From: Misha Brukman Date: Tue, 19 Jun 2018 13:34:10 -0400 Subject: [PATCH] Fix Bigtable docs for instance/cluster [skip ci] (#1671) An instance is an abstract container of clusters, it's the cluster that has the nodes and holds the data, so the number of nodes and location apply to the cluster. --- website/docs/r/bigtable_instance.html.markdown | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/website/docs/r/bigtable_instance.html.markdown b/website/docs/r/bigtable_instance.html.markdown index ac4a5df89b7..a1c4153d1d8 100644 --- a/website/docs/r/bigtable_instance.html.markdown +++ b/website/docs/r/bigtable_instance.html.markdown @@ -29,17 +29,17 @@ resource "google_bigtable_instance" "instance" { The following arguments are supported: -* `name` - (Required) The name of the Bigtable instance. +* `name` - (Required) The name of the Cloud Bigtable instance. -* `cluster_id` - (Required) The name of the Bigtable instance's cluster. +* `cluster_id` - (Required) The ID of the Cloud Bigtable cluster. -* `zone` - (Required) The zone to create the Bigtable instance in. Zones that support Bigtable instances are noted on the [Cloud Locations page](https://cloud.google.com/about/locations/). +* `zone` - (Required) The zone to create the Cloud Bigtable cluster in. Zones that support Bigtable instances are noted on the [Cloud Bigtable locations page](https://cloud.google.com/bigtable/docs/locations). -* `num_nodes` - (Optional) The number of nodes in your Bigtable instance. Minimum of `3` for a `PRODUCTION` instance. Cannot be set for a `DEVELOPMENT` instance. +* `num_nodes` - (Optional) The number of nodes in your Cloud Bigtable cluster. Minimum of `3` for a `PRODUCTION` instance. Cannot be set for a `DEVELOPMENT` instance. -* `instance_type` - (Optional) The instance type to create. One of `"DEVELOPMENT"` or `"PRODUCTION"`. Defaults to `PRODUCTION`. +* `instance_type` - (Optional) The instance type to create. One of `"DEVELOPMENT"` or `"PRODUCTION"`. Defaults to `"PRODUCTION"`. -* `storage_type` - (Optional) The storage type to use. One of `"SSD"` or `"HDD"`. Defaults to `SSD`. +* `storage_type` - (Optional) The storage type to use. One of `"SSD"` or `"HDD"`. Defaults to `"SSD"`. * `project` - (Optional) The ID of the project in which the resource belongs. If it is not provided, the provider project is used.