<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Grant permissions to existing catalogs/schemas using Databricks Asset Bundles in Data Governance</title>
    <link>https://community.databricks.com/t5/data-governance/grant-permissions-to-existing-catalogs-schemas-using-databricks/m-p/150137#M2775</link>
    <description>&lt;P&gt;Hi &lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/216624"&gt;@vjussiiih&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;Let me walk you through this. You are correct that DABs treat schemas and catalogs defined under "resources" as fully managed resources, which means they attempt to create them on first deploy and manage their full lifecycle. This is what causes both the "Schema already exists" error and the destructive delete/recreate warnings you are seeing.&lt;/P&gt;
&lt;P&gt;The good news is there is a supported way to handle this. Here are the approaches depending on your situation:&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;APPROACH 1: USE "bundle deployment bind" FOR EXISTING SCHEMAS (RECOMMENDED)&lt;/P&gt;
&lt;P&gt;The Databricks CLI supports a "bind" command that links a bundle-defined resource to an existing resource in your workspace. This tells DAB "this resource already exists, manage it going forward instead of trying to create a new one." Critically, bind does not recreate data or the resource itself.&lt;/P&gt;
&lt;P&gt;Step 1 - Define the schema in your bundle YAML with the grants you want:&lt;/P&gt;
&lt;P&gt;resources:&lt;BR /&gt;schemas:&lt;BR /&gt;schema_name:&lt;BR /&gt;name: schema_name&lt;BR /&gt;catalog_name: catalog_name&lt;BR /&gt;grants:&lt;BR /&gt;- principal: some_principal_name&lt;BR /&gt;privileges:&lt;BR /&gt;- USE_SCHEMA&lt;BR /&gt;- SELECT&lt;/P&gt;
&lt;P&gt;Step 2 - Bind the bundle resource to the existing schema:&lt;/P&gt;
&lt;P&gt;databricks bundle deployment bind schema_name catalog_name.schema_name -t your_target&lt;/P&gt;
&lt;P&gt;The first argument ("schema_name") is the resource key you used in your YAML. The second argument is the full name of the existing schema in your workspace.&lt;/P&gt;
&lt;P&gt;Step 3 - Deploy:&lt;/P&gt;
&lt;P&gt;databricks bundle deploy -t your_target&lt;/P&gt;
&lt;P&gt;After binding, the deploy will update the existing schema with your grant definitions instead of trying to create a new one or destroying the existing one.&lt;/P&gt;
&lt;P&gt;The bind command supports the following resource types: app, cluster, dashboard, job, model_serving_endpoint, pipeline, quality_monitor, registered_model, schema, and volume.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;APPROACH 2: SQL TASK IN A DAB JOB (FOR CATALOGS OR GRANT-ONLY MANAGEMENT)&lt;/P&gt;
&lt;P&gt;Since the bind command does not currently support catalogs, and since you mentioned you do not have CREATE CATALOG privileges on the metastore, a SQL task within a DAB-managed job is a practical alternative. This approach works for both catalogs and schemas, and it keeps your grants versioned in source control without DAB managing the lifecycle of the UC objects.&lt;/P&gt;
&lt;P&gt;resources:&lt;BR /&gt;jobs:&lt;BR /&gt;apply_uc_grants:&lt;BR /&gt;name: "apply-uc-grants"&lt;BR /&gt;tasks:&lt;BR /&gt;- task_key: "grant_permissions"&lt;BR /&gt;sql_task:&lt;BR /&gt;warehouse_id: ${var.warehouse_id}&lt;BR /&gt;file:&lt;BR /&gt;path: ./sql/apply_grants.sql&lt;/P&gt;
&lt;P&gt;variables:&lt;BR /&gt;warehouse_id:&lt;BR /&gt;description: "SQL warehouse ID"&lt;BR /&gt;lookup:&lt;BR /&gt;warehouse: "your-warehouse-name"&lt;/P&gt;
&lt;P&gt;Then create a file at sql/apply_grants.sql in your bundle:&lt;/P&gt;
&lt;P&gt;-- Catalog-level grants&lt;BR /&gt;GRANT USE_CATALOG ON CATALOG catalog_name TO `some_principal_name`;&lt;BR /&gt;GRANT CREATE_SCHEMA ON CATALOG catalog_name TO `some_principal_name`;&lt;/P&gt;
&lt;P&gt;-- Schema-level grants&lt;BR /&gt;GRANT USE_SCHEMA ON SCHEMA catalog_name.schema_name TO `some_principal_name`;&lt;BR /&gt;GRANT SELECT ON SCHEMA catalog_name.schema_name TO `some_principal_name`;&lt;/P&gt;
&lt;P&gt;You can then run this job after deployment with "databricks bundle run apply_uc_grants" or schedule it to run periodically to enforce your grants. The identity running the SQL must have MANAGE or ownership on the target objects.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;APPROACH 3: USE THE DATABRICKS TERRAFORM PROVIDER (IF YOU PREFER TERRAFORM)&lt;/P&gt;
&lt;P&gt;Since your title mentions Terraform, it is worth noting that the Databricks Terraform provider has a "databricks_grants" resource that is designed specifically for this use case. It manages only the grants on an existing object without managing the object lifecycle:&lt;/P&gt;
&lt;P&gt;resource "databricks_grants" "schema_grants" {&lt;BR /&gt;schema = "catalog_name.schema_name"&lt;/P&gt;
&lt;P&gt;grant {&lt;BR /&gt;principal = "some_principal_name"&lt;BR /&gt;privileges = ["USE_SCHEMA", "SELECT"]&lt;BR /&gt;}&lt;/P&gt;
&lt;P&gt;grant {&lt;BR /&gt;principal = "another_principal"&lt;BR /&gt;privileges = ["USE_SCHEMA", "SELECT", "MODIFY"]&lt;BR /&gt;}&lt;BR /&gt;}&lt;/P&gt;
&lt;P&gt;resource "databricks_grants" "catalog_grants" {&lt;BR /&gt;catalog = "catalog_name"&lt;/P&gt;
&lt;P&gt;grant {&lt;BR /&gt;principal = "some_principal_name"&lt;BR /&gt;privileges = ["USE_CATALOG"]&lt;BR /&gt;}&lt;BR /&gt;}&lt;/P&gt;
&lt;P&gt;The Terraform "databricks_grants" resource does not attempt to create or destroy the catalog or schema. It only manages the permissions. This is documented here:&lt;BR /&gt;&lt;A href="https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/grants" target="_blank"&gt;https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/grants&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;KEY THINGS TO NOTE&lt;/P&gt;
&lt;P&gt;1. CLI version: Make sure you are using a recent version of the Databricks CLI. Schema binding has been available since v0.243.0. Run "databricks --version" to check.&lt;/P&gt;
&lt;P&gt;2. Grants are declarative: When DAB applies grants, it sets them to exactly what you specify. Test in a non-production environment first to understand how this interacts with existing grants on the object.&lt;/P&gt;
&lt;P&gt;3. Permissions required: The identity running the deploy or SQL must have sufficient privileges (typically ownership or MANAGE) on the target catalog/schema to grant permissions.&lt;/P&gt;
&lt;P&gt;4. Feature request for "data sources": There is an open feature request on GitHub (&lt;A href="https://github.com/databricks/cli/issues/3460" target="_blank"&gt;https://github.com/databricks/cli/issues/3460&lt;/A&gt;) for a "sources" or "bind: false" concept in DABs that would let you reference existing resources without DAB owning them. This would make your exact use case even simpler in the future.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;DOCUMENTATION REFERENCES&lt;/P&gt;
&lt;P&gt;- Bundle deployment bind command:&lt;BR /&gt;&lt;A href="https://docs.databricks.com/en/dev-tools/cli/bundle-commands.html" target="_blank"&gt;https://docs.databricks.com/en/dev-tools/cli/bundle-commands.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;- Databricks Asset Bundles resources:&lt;BR /&gt;&lt;A href="https://docs.databricks.com/en/dev-tools/bundles/resources.html" target="_blank"&gt;https://docs.databricks.com/en/dev-tools/bundles/resources.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;- Unity Catalog privileges reference:&lt;BR /&gt;&lt;A href="https://docs.databricks.com/en/data-governance/unity-catalog/manage-privileges/privileges.html" target="_blank"&gt;https://docs.databricks.com/en/data-governance/unity-catalog/manage-privileges/privileges.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;- Terraform databricks_grants resource:&lt;BR /&gt;&lt;A href="https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/grants" target="_blank"&gt;https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/grants&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;- GitHub feature request for data sources in DABs:&lt;BR /&gt;&lt;A href="https://github.com/databricks/cli/issues/3460" target="_blank"&gt;https://github.com/databricks/cli/issues/3460&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Hope this helps! Let me know if you have any questions about the bind workflow or the SQL task approach.&lt;/P&gt;
&lt;P&gt;* This reply used an agent system I built to research and draft this response based on the wide set of documentation I have available and previous memory. I personally review the draft for any obvious issues and for monitoring system reliability and update it when I detect any drift, but there is still a small chance that something is inaccurate, especially if you are experimenting with brand new features.&lt;/P&gt;</description>
    <pubDate>Sun, 08 Mar 2026 04:44:11 GMT</pubDate>
    <dc:creator>SteveOstrowski</dc:creator>
    <dc:date>2026-03-08T04:44:11Z</dc:date>
    <item>
      <title>Grant permissions to existing catalogs/schemas using Databricks Asset Bundles</title>
      <link>https://community.databricks.com/t5/data-governance/grant-permissions-to-existing-catalogs-schemas-using-databricks/m-p/148678#M2763</link>
      <description>&lt;DIV&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I’m trying to use Databricks Asset Bundles (DAB) to assign Unity Catalog grants to catalogs and schemas that &lt;EM&gt;already exist&lt;/EM&gt; in my workspace.&lt;/P&gt;&lt;P&gt;These catalogs and schemas were &lt;STRONG&gt;not originally created through DAB&lt;/STRONG&gt;, but I would now like to manage their &lt;STRONG&gt;grants&lt;/STRONG&gt; using a bundle.&lt;/P&gt;&lt;P&gt;For example, I am adding an existing schema like this:&lt;/P&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;PRE&gt;resources:&lt;BR /&gt;&amp;nbsp; schemas:&lt;BR /&gt;&amp;nbsp; &amp;nbsp; schema_name:&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; name: schema_name&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; catalog_name: catalog_name&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; grants:&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; - principal: some_principal_name&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; privileges:&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; - USE_SCHEMA&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; - SELECT&lt;BR /&gt;&amp;nbsp; &lt;/PRE&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;P&gt;However, regarding schemas (or catalogs)&amp;nbsp;&lt;STRONG&gt;originally created by DAB&lt;/STRONG&gt;, I get the following warning:&lt;/P&gt;&lt;/DIV&gt;&lt;PRE&gt;This action will result in the deletion or recreation of the following UC schemas.
Any underlying data may be lost:

delete resources.schemas.dab_test_catalog
delete resources.schemas.dab_test_schema

Error: the deployment requires destructive actions, but current console does not support prompting.
Please specify --auto-approve if you would like to skip prompts and proceed&lt;/PRE&gt;&lt;DIV&gt;&lt;P&gt;And when the schema &lt;STRONG&gt;already exists but was NOT created by DAB&lt;/STRONG&gt;, the deployment fails with:&lt;/P&gt;&lt;/DIV&gt;&lt;PRE&gt;Error: cannot create resources.schemas.&amp;lt;name&amp;gt;: Schema already exists&lt;/PRE&gt;&lt;H3&gt;&lt;STRONG&gt;My question:&lt;/STRONG&gt;&lt;/H3&gt;&lt;P&gt;Is there &lt;EM&gt;any supported way&lt;/EM&gt; to use Databricks Asset Bundles to &lt;STRONG&gt;grant permissions&lt;/STRONG&gt; on an &lt;EM&gt;existing catalog or schema&lt;/EM&gt; &lt;STRONG&gt;without&lt;/STRONG&gt;:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;DAB trying to create the catalog/schema&lt;/LI&gt;&lt;LI&gt;DAB trying to delete and recreate them&lt;/LI&gt;&lt;LI&gt;DAB attempting destructive changes&lt;/LI&gt;&lt;LI&gt;Having to explicitly define every table/volume inside the schema&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;In short:&lt;BR /&gt;&lt;span class="lia-unicode-emoji" title=":backhand_index_pointing_right:"&gt;👉&lt;/span&gt; I only want to &lt;STRONG&gt;apply grants&lt;/STRONG&gt;, not manage the lifecycle of the schema/catalog itself.&lt;/P&gt;&lt;H3&gt;&lt;STRONG&gt;What I’ve tried / observed:&lt;/STRONG&gt;&lt;/H3&gt;&lt;UL&gt;&lt;LI&gt;If a schema is defined under resources.schemas, DAB treats it as a &lt;STRONG&gt;fully managed resource&lt;/STRONG&gt;, meaning it wants to create or drop it.&lt;/LI&gt;&lt;LI&gt;This triggers destructive plans, because DAB does not support a “grant‑only” mode for Unity Catalog objects.&lt;/LI&gt;&lt;LI&gt;I also tried with catalogs, but Bundles always attempts to &lt;STRONG&gt;create&lt;/STRONG&gt; the catalog via POST /catalogs, which requires &lt;STRONG&gt;CREATE CATALOG&lt;/STRONG&gt; on the metastore — which I do not have.&lt;/LI&gt;&lt;/UL&gt;&lt;H3&gt;&lt;STRONG&gt;Is there any non-destructive pattern or best practice for this scenario?&lt;/STRONG&gt;&lt;/H3&gt;&lt;P&gt;Something like managing only permissions for existing UC objects, without having DAB take ownership of the entire schema/catalog?&lt;/P&gt;&lt;P&gt;Thanks in advance to anyone who can clarify whether this is supported. SQL tasks might be the only safe option and that is what AIs are also suggesting.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Feb 2026 10:29:58 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-governance/grant-permissions-to-existing-catalogs-schemas-using-databricks/m-p/148678#M2763</guid>
      <dc:creator>vjussiiih</dc:creator>
      <dc:date>2026-02-18T10:29:58Z</dc:date>
    </item>
    <item>
      <title>Re: Grant permissions to existing catalogs/schemas using Databricks Asset Bundles</title>
      <link>https://community.databricks.com/t5/data-governance/grant-permissions-to-existing-catalogs-schemas-using-databricks/m-p/150137#M2775</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/216624"&gt;@vjussiiih&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;Let me walk you through this. You are correct that DABs treat schemas and catalogs defined under "resources" as fully managed resources, which means they attempt to create them on first deploy and manage their full lifecycle. This is what causes both the "Schema already exists" error and the destructive delete/recreate warnings you are seeing.&lt;/P&gt;
&lt;P&gt;The good news is there is a supported way to handle this. Here are the approaches depending on your situation:&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;APPROACH 1: USE "bundle deployment bind" FOR EXISTING SCHEMAS (RECOMMENDED)&lt;/P&gt;
&lt;P&gt;The Databricks CLI supports a "bind" command that links a bundle-defined resource to an existing resource in your workspace. This tells DAB "this resource already exists, manage it going forward instead of trying to create a new one." Critically, bind does not recreate data or the resource itself.&lt;/P&gt;
&lt;P&gt;Step 1 - Define the schema in your bundle YAML with the grants you want:&lt;/P&gt;
&lt;P&gt;resources:&lt;BR /&gt;schemas:&lt;BR /&gt;schema_name:&lt;BR /&gt;name: schema_name&lt;BR /&gt;catalog_name: catalog_name&lt;BR /&gt;grants:&lt;BR /&gt;- principal: some_principal_name&lt;BR /&gt;privileges:&lt;BR /&gt;- USE_SCHEMA&lt;BR /&gt;- SELECT&lt;/P&gt;
&lt;P&gt;Step 2 - Bind the bundle resource to the existing schema:&lt;/P&gt;
&lt;P&gt;databricks bundle deployment bind schema_name catalog_name.schema_name -t your_target&lt;/P&gt;
&lt;P&gt;The first argument ("schema_name") is the resource key you used in your YAML. The second argument is the full name of the existing schema in your workspace.&lt;/P&gt;
&lt;P&gt;Step 3 - Deploy:&lt;/P&gt;
&lt;P&gt;databricks bundle deploy -t your_target&lt;/P&gt;
&lt;P&gt;After binding, the deploy will update the existing schema with your grant definitions instead of trying to create a new one or destroying the existing one.&lt;/P&gt;
&lt;P&gt;The bind command supports the following resource types: app, cluster, dashboard, job, model_serving_endpoint, pipeline, quality_monitor, registered_model, schema, and volume.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;APPROACH 2: SQL TASK IN A DAB JOB (FOR CATALOGS OR GRANT-ONLY MANAGEMENT)&lt;/P&gt;
&lt;P&gt;Since the bind command does not currently support catalogs, and since you mentioned you do not have CREATE CATALOG privileges on the metastore, a SQL task within a DAB-managed job is a practical alternative. This approach works for both catalogs and schemas, and it keeps your grants versioned in source control without DAB managing the lifecycle of the UC objects.&lt;/P&gt;
&lt;P&gt;resources:&lt;BR /&gt;jobs:&lt;BR /&gt;apply_uc_grants:&lt;BR /&gt;name: "apply-uc-grants"&lt;BR /&gt;tasks:&lt;BR /&gt;- task_key: "grant_permissions"&lt;BR /&gt;sql_task:&lt;BR /&gt;warehouse_id: ${var.warehouse_id}&lt;BR /&gt;file:&lt;BR /&gt;path: ./sql/apply_grants.sql&lt;/P&gt;
&lt;P&gt;variables:&lt;BR /&gt;warehouse_id:&lt;BR /&gt;description: "SQL warehouse ID"&lt;BR /&gt;lookup:&lt;BR /&gt;warehouse: "your-warehouse-name"&lt;/P&gt;
&lt;P&gt;Then create a file at sql/apply_grants.sql in your bundle:&lt;/P&gt;
&lt;P&gt;-- Catalog-level grants&lt;BR /&gt;GRANT USE_CATALOG ON CATALOG catalog_name TO `some_principal_name`;&lt;BR /&gt;GRANT CREATE_SCHEMA ON CATALOG catalog_name TO `some_principal_name`;&lt;/P&gt;
&lt;P&gt;-- Schema-level grants&lt;BR /&gt;GRANT USE_SCHEMA ON SCHEMA catalog_name.schema_name TO `some_principal_name`;&lt;BR /&gt;GRANT SELECT ON SCHEMA catalog_name.schema_name TO `some_principal_name`;&lt;/P&gt;
&lt;P&gt;You can then run this job after deployment with "databricks bundle run apply_uc_grants" or schedule it to run periodically to enforce your grants. The identity running the SQL must have MANAGE or ownership on the target objects.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;APPROACH 3: USE THE DATABRICKS TERRAFORM PROVIDER (IF YOU PREFER TERRAFORM)&lt;/P&gt;
&lt;P&gt;Since your title mentions Terraform, it is worth noting that the Databricks Terraform provider has a "databricks_grants" resource that is designed specifically for this use case. It manages only the grants on an existing object without managing the object lifecycle:&lt;/P&gt;
&lt;P&gt;resource "databricks_grants" "schema_grants" {&lt;BR /&gt;schema = "catalog_name.schema_name"&lt;/P&gt;
&lt;P&gt;grant {&lt;BR /&gt;principal = "some_principal_name"&lt;BR /&gt;privileges = ["USE_SCHEMA", "SELECT"]&lt;BR /&gt;}&lt;/P&gt;
&lt;P&gt;grant {&lt;BR /&gt;principal = "another_principal"&lt;BR /&gt;privileges = ["USE_SCHEMA", "SELECT", "MODIFY"]&lt;BR /&gt;}&lt;BR /&gt;}&lt;/P&gt;
&lt;P&gt;resource "databricks_grants" "catalog_grants" {&lt;BR /&gt;catalog = "catalog_name"&lt;/P&gt;
&lt;P&gt;grant {&lt;BR /&gt;principal = "some_principal_name"&lt;BR /&gt;privileges = ["USE_CATALOG"]&lt;BR /&gt;}&lt;BR /&gt;}&lt;/P&gt;
&lt;P&gt;The Terraform "databricks_grants" resource does not attempt to create or destroy the catalog or schema. It only manages the permissions. This is documented here:&lt;BR /&gt;&lt;A href="https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/grants" target="_blank"&gt;https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/grants&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;KEY THINGS TO NOTE&lt;/P&gt;
&lt;P&gt;1. CLI version: Make sure you are using a recent version of the Databricks CLI. Schema binding has been available since v0.243.0. Run "databricks --version" to check.&lt;/P&gt;
&lt;P&gt;2. Grants are declarative: When DAB applies grants, it sets them to exactly what you specify. Test in a non-production environment first to understand how this interacts with existing grants on the object.&lt;/P&gt;
&lt;P&gt;3. Permissions required: The identity running the deploy or SQL must have sufficient privileges (typically ownership or MANAGE) on the target catalog/schema to grant permissions.&lt;/P&gt;
&lt;P&gt;4. Feature request for "data sources": There is an open feature request on GitHub (&lt;A href="https://github.com/databricks/cli/issues/3460" target="_blank"&gt;https://github.com/databricks/cli/issues/3460&lt;/A&gt;) for a "sources" or "bind: false" concept in DABs that would let you reference existing resources without DAB owning them. This would make your exact use case even simpler in the future.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;DOCUMENTATION REFERENCES&lt;/P&gt;
&lt;P&gt;- Bundle deployment bind command:&lt;BR /&gt;&lt;A href="https://docs.databricks.com/en/dev-tools/cli/bundle-commands.html" target="_blank"&gt;https://docs.databricks.com/en/dev-tools/cli/bundle-commands.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;- Databricks Asset Bundles resources:&lt;BR /&gt;&lt;A href="https://docs.databricks.com/en/dev-tools/bundles/resources.html" target="_blank"&gt;https://docs.databricks.com/en/dev-tools/bundles/resources.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;- Unity Catalog privileges reference:&lt;BR /&gt;&lt;A href="https://docs.databricks.com/en/data-governance/unity-catalog/manage-privileges/privileges.html" target="_blank"&gt;https://docs.databricks.com/en/data-governance/unity-catalog/manage-privileges/privileges.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;- Terraform databricks_grants resource:&lt;BR /&gt;&lt;A href="https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/grants" target="_blank"&gt;https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/grants&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;- GitHub feature request for data sources in DABs:&lt;BR /&gt;&lt;A href="https://github.com/databricks/cli/issues/3460" target="_blank"&gt;https://github.com/databricks/cli/issues/3460&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Hope this helps! Let me know if you have any questions about the bind workflow or the SQL task approach.&lt;/P&gt;
&lt;P&gt;* This reply used an agent system I built to research and draft this response based on the wide set of documentation I have available and previous memory. I personally review the draft for any obvious issues and for monitoring system reliability and update it when I detect any drift, but there is still a small chance that something is inaccurate, especially if you are experimenting with brand new features.&lt;/P&gt;</description>
      <pubDate>Sun, 08 Mar 2026 04:44:11 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-governance/grant-permissions-to-existing-catalogs-schemas-using-databricks/m-p/150137#M2775</guid>
      <dc:creator>SteveOstrowski</dc:creator>
      <dc:date>2026-03-08T04:44:11Z</dc:date>
    </item>
  </channel>
</rss>

