Add gc_policy to Bigtable module.

Column families have now a new property, to specify the garbage collection
policy. A new option also allows to set a default policy if none is specified.

This changes the previous syntax for column families, that was helpful since the
policy is column-family specific, the new syntax makes it easier to specify a
policy per column family.
This commit is contained in:
Israel Herraiz
2022-12-22 21:04:42 +01:00
parent 008828f2d8
commit 32bee7104e
5 changed files with 145 additions and 23 deletions

View File

@@ -17,11 +17,11 @@ terraform {
required_providers {
google = {
source = "hashicorp/google"
version = ">= 4.40.0" # tftest
version = ">= 4.47.0" # tftest
}
google-beta = {
source = "hashicorp/google-beta"
version = ">= 4.40.0" # tftest
version = ">= 4.47.0" # tftest
}
}
}