Rename bigquery_use_partitioned_table

This commit is contained in:
Julio Castillo
2022-11-12 11:30:34 +01:00
parent c7fe6da12e
commit 8fe19ad7c2
10 changed files with 31 additions and 31 deletions

View File

@@ -37,9 +37,9 @@ resource "google_logging_project_sink" "sink" {
disabled = each.value.disabled
dynamic "bigquery_options" {
for_each = each.value.bigquery_use_partitioned_table != null ? [""] : []
for_each = each.value.bq_partitioned_table != null ? [""] : []
content {
use_partitioned_tables = each.value.bigquery_use_partitioned_table
use_partitioned_tables = each.value.bq_partitioned_table
}
}