<?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: Parameters in dashboards data section passing via asset bundles in Get Started Discussions</title>
    <link>https://community.databricks.com/t5/get-started-discussions/parameters-in-dashboards-data-section-passing-via-asset-bundles/m-p/101136#M8872</link>
    <description>&lt;P class="p1"&gt;Yes, it is possible to pass parameters for Dashboards Datasets in asset bundles. You can define custom variables in the bundle configuration file and use these variables in your dashboard queries&lt;/P&gt;
&lt;P class="p1"&gt;You can define variables in the databricks.yml file. For instance, you can define a variable for the catalog name:&lt;/P&gt;
&lt;P class="p2"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="p1"&gt;variables:&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &lt;/SPAN&gt;catalog:&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;description: "Catalog name for the dataset"&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;default: "dev"&lt;/P&gt;
&lt;P class="p1"&gt;You can reference these variables in your dashboard configuration file. For example, in your baby_gender_by_county.dashboard.yml file, you can use the variable in the query:&lt;/P&gt;
&lt;P class="p1"&gt;resources:&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &lt;/SPAN&gt;dashboards:&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;baby_gender_by_county:&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;display_name: "Baby gender by county"&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;warehouse_id: aae11o8e6fe9zz79&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;file_path: ../src/baby_gender_by_county.lvdash.json&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;parameters:&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;catalog: ${var.catalog}&lt;/P&gt;
&lt;P class="p1"&gt;&lt;A href="https://docs.databricks.com/en/dev-tools/bundles/settings.html" target="_blank"&gt;https://docs.databricks.com/en/dev-tools/bundles/settings.html&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 05 Dec 2024 22:01:25 GMT</pubDate>
    <dc:creator>Alberto_Umana</dc:creator>
    <dc:date>2024-12-05T22:01:25Z</dc:date>
    <item>
      <title>Parameters in dashboards data section passing via asset bundles</title>
      <link>https://community.databricks.com/t5/get-started-discussions/parameters-in-dashboards-data-section-passing-via-asset-bundles/m-p/101070#M8871</link>
      <description>&lt;P&gt;A new functionality allows deploy dashboards with a asset bundles. Here is an example :&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;# This is the contents of the resulting baby_gender_by_county.dashboard.yml file.
resources:
  dashboards:
    baby_gender_by_county:
      display_name: "Baby gender by county"
      warehouse_id: aae11o8e6fe9zz79
      file_path: ../src/baby_gender_by_county.lvdash.json&lt;/LI-CODE&gt;&lt;P&gt;&lt;STRONG&gt;In my dashboard Data section I have datasets and I want pass parameters to the query and use as parameter the same as I can do in jobs. Lets say catalog name, so I can specify variable and pass it in the bundle to deploy same dashboard to dev, prod:&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;SELECT * FROM IDENTIFIER(:catalog||'.my_schema.my_table')&lt;/LI-CODE&gt;&lt;P&gt;&lt;STRONG&gt;And dashboard json file will have my parameters value from the bundle:&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;"datasets": [
    {
      "displayName": "My Dashboard",
      "name": "16b8c208",
      "parameters": [
        {
          "dataType": "STRING",
          "defaultSelection": {
            "values": {
              "dataType": "STRING",
              "values": [
                {
                  "value": "prod"
                }
              ]
            }
          },
          "displayName": "catalog",
          "keyword": "catalog"
        }
      ],
      "query": "SELECT * FROM IDENTIFIER(:catalog||'.my_schema.my_table')"
    },&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;Is it possible to pass parameters for Dashboards Datasets in asset bundles?&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Or may be there is another way how to deploy the same json dashboard to PROD, DEV and somehow change queries, to use dev catalog in dev workspace, prod catalog in prod?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Dec 2024 13:05:57 GMT</pubDate>
      <guid>https://community.databricks.com/t5/get-started-discussions/parameters-in-dashboards-data-section-passing-via-asset-bundles/m-p/101070#M8871</guid>
      <dc:creator>drag7ter</dc:creator>
      <dc:date>2024-12-05T13:05:57Z</dc:date>
    </item>
    <item>
      <title>Re: Parameters in dashboards data section passing via asset bundles</title>
      <link>https://community.databricks.com/t5/get-started-discussions/parameters-in-dashboards-data-section-passing-via-asset-bundles/m-p/101136#M8872</link>
      <description>&lt;P class="p1"&gt;Yes, it is possible to pass parameters for Dashboards Datasets in asset bundles. You can define custom variables in the bundle configuration file and use these variables in your dashboard queries&lt;/P&gt;
&lt;P class="p1"&gt;You can define variables in the databricks.yml file. For instance, you can define a variable for the catalog name:&lt;/P&gt;
&lt;P class="p2"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="p1"&gt;variables:&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &lt;/SPAN&gt;catalog:&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;description: "Catalog name for the dataset"&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;default: "dev"&lt;/P&gt;
&lt;P class="p1"&gt;You can reference these variables in your dashboard configuration file. For example, in your baby_gender_by_county.dashboard.yml file, you can use the variable in the query:&lt;/P&gt;
&lt;P class="p1"&gt;resources:&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &lt;/SPAN&gt;dashboards:&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;baby_gender_by_county:&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;display_name: "Baby gender by county"&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;warehouse_id: aae11o8e6fe9zz79&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;file_path: ../src/baby_gender_by_county.lvdash.json&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;parameters:&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;catalog: ${var.catalog}&lt;/P&gt;
&lt;P class="p1"&gt;&lt;A href="https://docs.databricks.com/en/dev-tools/bundles/settings.html" target="_blank"&gt;https://docs.databricks.com/en/dev-tools/bundles/settings.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Dec 2024 22:01:25 GMT</pubDate>
      <guid>https://community.databricks.com/t5/get-started-discussions/parameters-in-dashboards-data-section-passing-via-asset-bundles/m-p/101136#M8872</guid>
      <dc:creator>Alberto_Umana</dc:creator>
      <dc:date>2024-12-05T22:01:25Z</dc:date>
    </item>
    <item>
      <title>Re: Parameters in dashboards data section passing via asset bundles</title>
      <link>https://community.databricks.com/t5/get-started-discussions/parameters-in-dashboards-data-section-passing-via-asset-bundles/m-p/101196#M8873</link>
      <description>&lt;P&gt;Thx for advice, but unfortunately it doesn't work, my cli version is 232:&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Deploying resources...&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;Updating deployment state...&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;Deployment complete!&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;Warning: unknown field: parameters&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;at resources.dashboards.my_dashboard&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;in resources\dashboards\bundles\my_dashboard.yml:7:7&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Dec 2024 10:34:23 GMT</pubDate>
      <guid>https://community.databricks.com/t5/get-started-discussions/parameters-in-dashboards-data-section-passing-via-asset-bundles/m-p/101196#M8873</guid>
      <dc:creator>drag7ter</dc:creator>
      <dc:date>2024-12-06T10:34:23Z</dc:date>
    </item>
    <item>
      <title>Re: Parameters in dashboards data section passing via asset bundles</title>
      <link>https://community.databricks.com/t5/get-started-discussions/parameters-in-dashboards-data-section-passing-via-asset-bundles/m-p/101221#M8874</link>
      <description>&lt;P class=""&gt;variables:&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;catalog:&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;description: "Catalog name for the dataset"&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;default: "dev"&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;parameters:&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;catalog: ${var.catalog}&lt;BR /&gt;&lt;BR /&gt;doesn't replace parameter values prod -&amp;gt; dev in json when it is being deployed&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;"datasets"&lt;/SPAN&gt;&lt;SPAN&gt;: [&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; {&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;"displayName"&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;"my_table"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;"name"&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;"16b8c208"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;"parameters"&lt;/SPAN&gt;&lt;SPAN&gt;: [&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;"dataType"&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;"STRING"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;"defaultSelection"&lt;/SPAN&gt;&lt;SPAN&gt;: {&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;"values"&lt;/SPAN&gt;&lt;SPAN&gt;: {&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;"dataType"&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;"STRING"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;"values"&lt;/SPAN&gt;&lt;SPAN&gt;: [&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;"value"&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;"prod"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ]&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; },&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;"displayName"&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;"catalog"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;"keyword"&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;"catalog"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; ],&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;"query"&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;"SELECT * FROM IDENTIFIER(:catalog||'.my_schema.my_table')"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; },&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P class=""&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Dec 2024 13:30:42 GMT</pubDate>
      <guid>https://community.databricks.com/t5/get-started-discussions/parameters-in-dashboards-data-section-passing-via-asset-bundles/m-p/101221#M8874</guid>
      <dc:creator>drag7ter</dc:creator>
      <dc:date>2024-12-06T13:30:42Z</dc:date>
    </item>
    <item>
      <title>Re: Parameters in dashboards data section passing via asset bundles</title>
      <link>https://community.databricks.com/t5/get-started-discussions/parameters-in-dashboards-data-section-passing-via-asset-bundles/m-p/121866#M10182</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/103503"&gt;@drag7ter&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;I have the same problem on my project - the "catalog" part of the table location must be dynamic.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/106294"&gt;@Alberto_Umana&lt;/a&gt;&amp;nbsp;'s answer obviously does not work.&lt;/P&gt;&lt;P&gt;Were you able to find any workaround for this? My workaround is to create two different versions of the .lvdash.json file (e.g. dash_cat_dev.lvdash.json and dash_cat_prod.lvdash.json) and use a DAB variable in the&amp;nbsp;file_path field. This feels cumbersome though&lt;/P&gt;</description>
      <pubDate>Mon, 16 Jun 2025 11:59:26 GMT</pubDate>
      <guid>https://community.databricks.com/t5/get-started-discussions/parameters-in-dashboards-data-section-passing-via-asset-bundles/m-p/121866#M10182</guid>
      <dc:creator>mydefaultlogin</dc:creator>
      <dc:date>2025-06-16T11:59:26Z</dc:date>
    </item>
    <item>
      <title>Re: Parameters in dashboards data section passing via asset bundles</title>
      <link>https://community.databricks.com/t5/get-started-discussions/parameters-in-dashboards-data-section-passing-via-asset-bundles/m-p/131464#M10691</link>
      <description>&lt;P&gt;Just chiming in to say I'm also looking for a solution that lets us use DAB variables in parameters. This would really let us improve reuse and configuration across multiple environments and clients. Then we can set the various options via a deployment pipeline to improve reusability.&lt;/P&gt;&lt;P&gt;My only other thought is to serialize the dashboard json and treat it as a string "serialized_dashboard" (&lt;A href="https://docs.databricks.com/aws/en/dev-tools/bundles/resources#dashboard" target="_blank"&gt;https://docs.databricks.com/aws/en/dev-tools/bundles/resources#dashboard&lt;/A&gt;), but that seems really ugly.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Sep 2025 19:53:20 GMT</pubDate>
      <guid>https://community.databricks.com/t5/get-started-discussions/parameters-in-dashboards-data-section-passing-via-asset-bundles/m-p/131464#M10691</guid>
      <dc:creator>ewwhitley</dc:creator>
      <dc:date>2025-09-09T19:53:20Z</dc:date>
    </item>
    <item>
      <title>Re: Parameters in dashboards data section passing via asset bundles</title>
      <link>https://community.databricks.com/t5/get-started-discussions/parameters-in-dashboards-data-section-passing-via-asset-bundles/m-p/131630#M10699</link>
      <description>&lt;P&gt;I am also interested in a solution, I have the same problem&lt;/P&gt;</description>
      <pubDate>Thu, 11 Sep 2025 09:05:27 GMT</pubDate>
      <guid>https://community.databricks.com/t5/get-started-discussions/parameters-in-dashboards-data-section-passing-via-asset-bundles/m-p/131630#M10699</guid>
      <dc:creator>JonA</dc:creator>
      <dc:date>2025-09-11T09:05:27Z</dc:date>
    </item>
    <item>
      <title>Re: Parameters in dashboards data section passing via asset bundles</title>
      <link>https://community.databricks.com/t5/get-started-discussions/parameters-in-dashboards-data-section-passing-via-asset-bundles/m-p/131631#M10700</link>
      <description>&lt;P&gt;My comment above comes from June. In July I also discovered the approach with the `serialized_dashboard` and I have been successfully using it since then.&lt;/P&gt;&lt;P&gt;I agree that it seems ugly (especially git diffs look horrible) but it does its job.&lt;/P&gt;&lt;P&gt;I generate the dashboard yaml files in an automated way, the `serialized_dashboard` is obtained by calling json.dumps().&lt;/P&gt;</description>
      <pubDate>Thu, 11 Sep 2025 09:29:30 GMT</pubDate>
      <guid>https://community.databricks.com/t5/get-started-discussions/parameters-in-dashboards-data-section-passing-via-asset-bundles/m-p/131631#M10700</guid>
      <dc:creator>mydefaultlogin</dc:creator>
      <dc:date>2025-09-11T09:29:30Z</dc:date>
    </item>
    <item>
      <title>Re: Parameters in dashboards data section passing via asset bundles</title>
      <link>https://community.databricks.com/t5/get-started-discussions/parameters-in-dashboards-data-section-passing-via-asset-bundles/m-p/131637#M10701</link>
      <description>&lt;P&gt;Could you pls provide an example how do you use dashboard as&amp;nbsp;&lt;SPAN&gt;`serialized_dashboard`? How you asset bundle look like?&amp;nbsp; And how you replace parameters like catalog_name during deployment?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Sep 2025 10:09:40 GMT</pubDate>
      <guid>https://community.databricks.com/t5/get-started-discussions/parameters-in-dashboards-data-section-passing-via-asset-bundles/m-p/131637#M10701</guid>
      <dc:creator>drag7ter</dc:creator>
      <dc:date>2025-09-11T10:09:40Z</dc:date>
    </item>
    <item>
      <title>Re: Parameters in dashboards data section passing via asset bundles</title>
      <link>https://community.databricks.com/t5/get-started-discussions/parameters-in-dashboards-data-section-passing-via-asset-bundles/m-p/133625#M10771</link>
      <description>&lt;P&gt;Is there already a better answer from Databricks on this case?&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/106294"&gt;@Alberto_Umana&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;We also need to deploy dashboards to different workspaces where the catalog in the dataset queries also need to change. Now AI/BI dashboard queries only allow actual select * from catalogname.calculations for instance, no parameters.&lt;/P&gt;</description>
      <pubDate>Fri, 03 Oct 2025 07:21:30 GMT</pubDate>
      <guid>https://community.databricks.com/t5/get-started-discussions/parameters-in-dashboards-data-section-passing-via-asset-bundles/m-p/133625#M10771</guid>
      <dc:creator>Karola_de_Groot</dc:creator>
      <dc:date>2025-10-03T07:21:30Z</dc:date>
    </item>
    <item>
      <title>Re: Parameters in dashboards data section passing via asset bundles</title>
      <link>https://community.databricks.com/t5/get-started-discussions/parameters-in-dashboards-data-section-passing-via-asset-bundles/m-p/133634#M10772</link>
      <description>&lt;P&gt;Me the same. It is one of the most critical fixes required to encourage more people to deploy dashboards to production. Actually, it could be the same parameters/setup as are for task jobs.&lt;/P&gt;</description>
      <pubDate>Fri, 03 Oct 2025 08:25:19 GMT</pubDate>
      <guid>https://community.databricks.com/t5/get-started-discussions/parameters-in-dashboards-data-section-passing-via-asset-bundles/m-p/133634#M10772</guid>
      <dc:creator>Hubert-Dudek</dc:creator>
      <dc:date>2025-10-03T08:25:19Z</dc:date>
    </item>
    <item>
      <title>Re: Parameters in dashboards data section passing via asset bundles</title>
      <link>https://community.databricks.com/t5/get-started-discussions/parameters-in-dashboards-data-section-passing-via-asset-bundles/m-p/133638#M10773</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/25346"&gt;@Hubert-Dudek&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/154375"&gt;@Karola_de_Groot&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There's an open issue on github regarding this change. We can try to generate some traffic in comment section and maybe it will be raised sooner.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://github.com/databricks/cli/issues/1915" target="_blank"&gt;DAB dashboards variable substitution in dataset queries · Issue #1915 · databricks/cli&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Oct 2025 08:57:54 GMT</pubDate>
      <guid>https://community.databricks.com/t5/get-started-discussions/parameters-in-dashboards-data-section-passing-via-asset-bundles/m-p/133638#M10773</guid>
      <dc:creator>szymon_dybczak</dc:creator>
      <dc:date>2025-10-03T08:57:54Z</dc:date>
    </item>
    <item>
      <title>Re: Parameters in dashboards data section passing via asset bundles</title>
      <link>https://community.databricks.com/t5/get-started-discussions/parameters-in-dashboards-data-section-passing-via-asset-bundles/m-p/133640#M10774</link>
      <description>&lt;P&gt;I did however just found out there is parameterization possible.. dont know yet how to incorporate it into asset bundle deploy but at least i have a first step.&amp;nbsp;&lt;BR /&gt;You can use SELECT *&amp;nbsp;&lt;SPAN&gt;FROM&lt;/SPAN&gt;&lt;SPAN&gt; IDENTIFIER(:&lt;/SPAN&gt;&lt;SPAN&gt;catalog&lt;/SPAN&gt; &lt;SPAN&gt;||&lt;/SPAN&gt; &lt;SPAN&gt;'.'&lt;/SPAN&gt; &lt;SPAN&gt;||&lt;/SPAN&gt;&lt;SPAN&gt; :&lt;/SPAN&gt;&lt;SPAN&gt;schema&lt;/SPAN&gt; &lt;SPAN&gt;||&lt;/SPAN&gt; &lt;SPAN&gt;'.'&lt;/SPAN&gt; &lt;SPAN&gt;||&lt;/SPAN&gt;&lt;SPAN&gt; :&lt;/SPAN&gt;&lt;SPAN&gt;table&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;BR /&gt;Or hardcode anything you dont need as variable like&amp;nbsp;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;SELECT * FROM&lt;/SPAN&gt;&lt;SPAN&gt; IDENTIFIER('company'&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;||&lt;/SPAN&gt; &lt;SPAN&gt;'.'&lt;/SPAN&gt; &lt;SPAN&gt;||&lt;/SPAN&gt;&lt;SPAN&gt; :&lt;/SPAN&gt;&lt;SPAN&gt;schema&lt;/SPAN&gt; &lt;SPAN&gt;||&lt;/SPAN&gt; &lt;SPAN&gt;'.'&lt;/SPAN&gt; &lt;SPAN&gt;||&lt;/SPAN&gt; &lt;SPAN&gt;'customers'&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;BR /&gt;and then fill in the variable&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Karola_de_Groot_1-1759482130635.png" style="width: 400px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/20375iFFC21543E05EB604/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Karola_de_Groot_1-1759482130635.png" alt="Karola_de_Groot_1-1759482130635.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;So if anyone has the next answer on how to change this variable via asset bundle deploy so i get prod on prod and dev on dev. would be awesome.&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Oct 2025 09:04:54 GMT</pubDate>
      <guid>https://community.databricks.com/t5/get-started-discussions/parameters-in-dashboards-data-section-passing-via-asset-bundles/m-p/133640#M10774</guid>
      <dc:creator>Karola_de_Groot</dc:creator>
      <dc:date>2025-10-03T09:04:54Z</dc:date>
    </item>
    <item>
      <title>Re: Parameters in dashboards data section passing via asset bundles</title>
      <link>https://community.databricks.com/t5/get-started-discussions/parameters-in-dashboards-data-section-passing-via-asset-bundles/m-p/143010#M11275</link>
      <description>&lt;P&gt;Just three weeks ago, Databricks added the ability to parameterize the catalog and schema, here with examples -&lt;A href="https://medium.com/@protmaks/dynamic-catalog-schema-in-databricks-dashboards-b7eea62270c6" target="_self"&gt;https://medium.com/@protmaks/dynamic-catalog-schema-in-databricks-dashboards-b7eea62270c6&lt;/A&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 05 Jan 2026 10:54:37 GMT</pubDate>
      <guid>https://community.databricks.com/t5/get-started-discussions/parameters-in-dashboards-data-section-passing-via-asset-bundles/m-p/143010#M11275</guid>
      <dc:creator>protmaks</dc:creator>
      <dc:date>2026-01-05T10:54:37Z</dc:date>
    </item>
  </channel>
</rss>

