diff --git a/website/docs/reference/resource-configs/databricks-configs.md b/website/docs/reference/resource-configs/databricks-configs.md index ff580d2d8cf..de1bb075015 100644 --- a/website/docs/reference/resource-configs/databricks-configs.md +++ b/website/docs/reference/resource-configs/databricks-configs.md @@ -776,6 +776,15 @@ These properties are sent directly to Databricks without validation in dbt, so b One application of this feature is making `delta` tables compatible with `iceberg` readers using the [Universal Format](https://docs.databricks.com/en/delta/uniform.html). +```sql +{{ config( + tblproperties={ + 'delta.enableIcebergCompatV2' = 'true' + 'delta.universalFormat.enabledFormats' = 'iceberg' + } + ) }} +``` + `tblproperties` can be specified for python models, but they will be applied via an `ALTER` statement after table creation.