This commit fixes #1064 by allowing to add more than one column family. Split keys are also now optional, and there is no possibility to set defaults for all tables (since keys and column families are related to the data and schema for each table, it is difficult that several tables share the same values). Also, declaring a table with no split keys nor column families requires initializing the table to an empty map, instead of using null.
68 lines
2.0 KiB
HCL
68 lines
2.0 KiB
HCL
/**
|
|
* Copyright 2022 Google LLC
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
locals {
|
|
num_nodes = var.autoscaling_config == null ? var.num_nodes : null
|
|
}
|
|
|
|
resource "google_bigtable_instance" "default" {
|
|
project = var.project_id
|
|
name = var.name
|
|
cluster {
|
|
cluster_id = var.cluster_id
|
|
zone = var.zone
|
|
storage_type = var.storage_type
|
|
num_nodes = local.num_nodes
|
|
dynamic "autoscaling_config" {
|
|
for_each = var.autoscaling_config == null ? [] : [""]
|
|
content {
|
|
min_nodes = var.autoscaling_config.min_nodes
|
|
max_nodes = var.autoscaling_config.max_nodes
|
|
cpu_target = var.autoscaling_config.cpu_target
|
|
storage_target = var.autoscaling_config.storage_target
|
|
}
|
|
}
|
|
}
|
|
instance_type = var.instance_type
|
|
|
|
display_name = var.display_name == null ? var.display_name : var.name
|
|
deletion_protection = var.deletion_protection
|
|
}
|
|
|
|
resource "google_bigtable_instance_iam_binding" "default" {
|
|
for_each = var.iam
|
|
project = var.project_id
|
|
instance = google_bigtable_instance.default.name
|
|
role = each.key
|
|
members = each.value
|
|
}
|
|
|
|
resource "google_bigtable_table" "default" {
|
|
for_each = var.tables
|
|
project = var.project_id
|
|
instance_name = google_bigtable_instance.default.name
|
|
name = each.key
|
|
split_keys = each.value.split_keys
|
|
|
|
dynamic "column_family" {
|
|
for_each = each.value.column_families
|
|
|
|
content {
|
|
family = column_family.value
|
|
}
|
|
}
|
|
}
|