diff --git a/examples/data-solutions/gcs-to-bq-with-least-privileges/datastorage.tf b/examples/data-solutions/gcs-to-bq-with-least-privileges/datastorage.tf index 06f761162..357111255 100644 --- a/examples/data-solutions/gcs-to-bq-with-least-privileges/datastorage.tf +++ b/examples/data-solutions/gcs-to-bq-with-least-privileges/datastorage.tf @@ -62,6 +62,11 @@ module "bigquery-dataset" { } schema = file("${path.module}/data-demo/person.json") deletion_protection = false + options = { + clustering = null + encryption_key = var.cmek_encryption ? try(module.kms[0].keys.key-bq.id, null) : null + expiration_time = null + } } } encryption_key = var.cmek_encryption ? try(module.kms[0].keys.key-bq.id, null) : null diff --git a/examples/data-solutions/gcs-to-bq-with-least-privileges/diagram.png b/examples/data-solutions/gcs-to-bq-with-least-privileges/diagram.png index 2a0ba526b..bae775b08 100644 Binary files a/examples/data-solutions/gcs-to-bq-with-least-privileges/diagram.png and b/examples/data-solutions/gcs-to-bq-with-least-privileges/diagram.png differ