+| zones | Zones of the Bigtable cluster. | <pre>map(object({<br> zone = string<br> cluster_id = string<br> num_nodes = optional(number)<br> kms_key_name = optional(string)<br> autoscaling_config = optional(object({<br> min_nodes = number<br> max_nodes = number<br> cpu_target = number<br> storage_target = optional(number)<br> }))<br> }))</pre> | <pre>{<br> "zone1": {<br> "autoscaling_config": {<br> "cpu_target": 60,<br> "max_nodes": 2,<br> "min_nodes": 1<br> },<br> "cluster_id": "cluster1",<br> "zone": "us-central1-a"<br> },<br> "zone2": {<br> "autoscaling_config": {<br> "cpu_target": 60,<br> "max_nodes": 2,<br> "min_nodes": 1<br> },<br> "cluster_id": "cluster2",<br> "zone": "us-west1-a"<br> },<br> "zone3": {<br> "autoscaling_config": {<br> "cpu_target": 60,<br> "max_nodes": 2,<br> "min_nodes": 1<br> },<br> "cluster_id": "cluster3",<br> "zone": "us-central1-c"<br> }<br>}</pre> | no |
0 commit comments