From 8142997c3037920e7a69e1546e9ea9c704e92626 Mon Sep 17 00:00:00 2001 From: Ryan Yuan Date: Wed, 29 Jul 2020 17:04:10 +1000 Subject: [PATCH] Update Bigtable Num of Clusters Block Docs --- third_party/terraform/resources/resource_bigtable_instance.go | 2 +- .../terraform/website/docs/r/bigtable_instance.html.markdown | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/third_party/terraform/resources/resource_bigtable_instance.go b/third_party/terraform/resources/resource_bigtable_instance.go index c1fb475e12a8..1e18c103d5fc 100644 --- a/third_party/terraform/resources/resource_bigtable_instance.go +++ b/third_party/terraform/resources/resource_bigtable_instance.go @@ -52,7 +52,7 @@ func resourceBigtableInstance() *schema.Resource { Type: schema.TypeList, Optional: true, Computed: true, - Description: `A block of cluster configuration options. This can be specified 1 or 2 times.`, + Description: `A block of cluster configuration options. This can be specified at least once, and up to 4 times.`, Elem: &schema.Resource{ Schema: map[string]*schema.Schema{ "cluster_id": { diff --git a/third_party/terraform/website/docs/r/bigtable_instance.html.markdown b/third_party/terraform/website/docs/r/bigtable_instance.html.markdown index d0e3055d814e..640c5b6b3727 100644 --- a/third_party/terraform/website/docs/r/bigtable_instance.html.markdown +++ b/third_party/terraform/website/docs/r/bigtable_instance.html.markdown @@ -63,7 +63,8 @@ The following arguments are supported: * `name` - (Required) The name (also called Instance Id in the Cloud Console) of the Cloud Bigtable instance. -* `cluster` - (Required) A block of cluster configuration options. This can be specified 1 or 2 times. See structure below. +* `cluster` - (Required) A block of cluster configuration options. This can be specified at least once, and up to 4 times. +See structure below. -----