You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
*`name` - (Required) The name of the Cloud Bigtable instance.
34
+
*`name` - (Required) The name (also called Instance Id in the Cloud Console) of the Cloud Bigtable instance.
35
35
36
-
*`instance_type` - (Optional) The instance type to create. One of `"DEVELOPMENT"` or `"PRODUCTION"`. Defaults to `"PRODUCTION"`.
36
+
*`cluster` - (Required) A block of cluster configuration options. This can be specified 1 or 2 times. See structure below.
37
+
38
+
-----
37
39
38
40
*`project` - (Optional) The ID of the project in which the resource belongs. If it
39
41
is not provided, the provider project is used.
40
42
41
-
*`display_name` - (Optional) The human-readable display name of the Bigtable instance. Defaults to the instance `name`.
42
-
43
-
*`cluster` - (Optional) A block of cluster configuration options. Either `cluster` or `cluster_id` must be used. Only one cluster may be specified. See structure below.
44
-
45
-
*`cluster_id` - (Optional, Deprecated) The ID of the Cloud Bigtable cluster. Use `cluster.cluster_id` instead.
46
-
47
-
*`zone` - (Optional, Deprecated) 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). Use `cluster.zone` instead.
43
+
*`instance_type` - (Optional) The instance type to create. One of `"DEVELOPMENT"` or `"PRODUCTION"`. Defaults to `"PRODUCTION"`.
48
44
49
-
*`num_nodes` - (Optional, Deprecated) The number of nodes in your Cloud Bigtable cluster. Minimum of `3` for a `PRODUCTION`instance. Cannot be set for a `DEVELOPMENT`instance. Use `cluster.num_nodes` instead.
45
+
*`display_name` - (Optional) The human-readable display name of the Bigtable instance. Defaults to the instance`name`.
50
46
51
-
*`storage_type` - (Optional, Deprecated) The storage type to use. One of `"SSD"` or `"HDD"`. Defaults to `"SSD"`. Use `cluster.storage_type` instead.
52
47
53
48
-----
54
49
55
-
`cluster` supports the following arguments:
50
+
The `cluster` block supports the following arguments:
56
51
57
52
*`cluster_id` - (Required) The ID of the Cloud Bigtable cluster.
58
53
59
-
*`zone` - (Optional) 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).
54
+
*`zone` - (Required) The zone to create the Cloud Bigtable cluster in. Each cluster must have a different zone in the same region. Zones that support Bigtable instances are noted on the [Cloud Bigtable locations page](https://cloud.google.com/bigtable/docs/locations).
60
55
61
-
*`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.
56
+
*`num_nodes` - (Optional) The number of nodes in your Cloud Bigtable cluster. Required, with a minimum of `3` for a `PRODUCTION` instance. Cannot be set for a `DEVELOPMENT` instance.
62
57
63
58
*`storage_type` - (Optional) The storage type to use. One of `"SSD"` or `"HDD"`. Defaults to `"SSD"`.
0 commit comments