<?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 Terraform support for AI/BI dashboards in Community Articles</title>
    <link>https://community.databricks.com/t5/community-articles/terraform-support-for-ai-bi-dashboards/m-p/81035#M200</link>
    <description>&lt;P&gt;&lt;SPAN&gt;AI/BI dashboards can now be managed through Terraform.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Dashboard using&amp;nbsp;serialized_dashboard&amp;nbsp;attribute:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;data "databricks_sql_warehouse" "starter" {
    name = "Starter Warehouse"
}

resource "databricks_dashboard" "dashboard" {
    display_name     = "New Dashboard"
    warehouse_id     = data.databricks_sql_warehouse.starter.id
    serialized_dashboard = "{\"pages\":[{\"name\":\"new_name\",\"displayName\":\"New Page\"}]}"
    embed_credentials    = false // Optional
    parent_path             = "/Shared/provider-test"
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Dashboard using&amp;nbsp;&lt;/SPAN&gt;file_path&lt;SPAN&gt;&amp;nbsp;attribute:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;data "databricks_sql_warehouse" "starter" {
    name = "Starter Warehouse"
}

resource "databricks_dashboard" "dashboard" {
    display_name         = "New Dashboard"
    warehouse_id         = data.databricks_sql_warehouse.starter.id
    file_path             = "${path.module}/dashboard.json"
    embed_credentials    = false // Optional
    parent_path             = "/Shared/provider-test"
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial black,avant garde"&gt;&lt;STRONG&gt;Argument Reference&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;The following arguments are supported:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;display_name&amp;nbsp;&lt;/SPAN&gt;- (Required) The display name of the dashboard.&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;warehouse_id&amp;nbsp;&lt;/SPAN&gt;- (Required) The warehouse ID used to run the dashboard.&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;serialized_dashboard &lt;/SPAN&gt;- (Optional) The contents of the dashboard in serialized string form. Conflicts with&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;file_path.&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;file_path&amp;nbsp;&lt;/SPAN&gt;- (Optional) The path to the dashboard JSON file. Conflicts with&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;serialized_dashboard.&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;embed_credentials&amp;nbsp;&lt;/SPAN&gt;- (Optional) Whether to embed credentials in the dashboard. Default is&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;true.&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;parent_path&amp;nbsp;&lt;/SPAN&gt;- (Required) The workspace path of the folder containing the dashboard. Includes leading slash and no trailing slash.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 30 Jul 2024 05:59:08 GMT</pubDate>
    <dc:creator>Ajay-Pandey</dc:creator>
    <dc:date>2024-07-30T05:59:08Z</dc:date>
    <item>
      <title>Terraform support for AI/BI dashboards</title>
      <link>https://community.databricks.com/t5/community-articles/terraform-support-for-ai-bi-dashboards/m-p/81035#M200</link>
      <description>&lt;P&gt;&lt;SPAN&gt;AI/BI dashboards can now be managed through Terraform.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Dashboard using&amp;nbsp;serialized_dashboard&amp;nbsp;attribute:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;data "databricks_sql_warehouse" "starter" {
    name = "Starter Warehouse"
}

resource "databricks_dashboard" "dashboard" {
    display_name     = "New Dashboard"
    warehouse_id     = data.databricks_sql_warehouse.starter.id
    serialized_dashboard = "{\"pages\":[{\"name\":\"new_name\",\"displayName\":\"New Page\"}]}"
    embed_credentials    = false // Optional
    parent_path             = "/Shared/provider-test"
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Dashboard using&amp;nbsp;&lt;/SPAN&gt;file_path&lt;SPAN&gt;&amp;nbsp;attribute:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;data "databricks_sql_warehouse" "starter" {
    name = "Starter Warehouse"
}

resource "databricks_dashboard" "dashboard" {
    display_name         = "New Dashboard"
    warehouse_id         = data.databricks_sql_warehouse.starter.id
    file_path             = "${path.module}/dashboard.json"
    embed_credentials    = false // Optional
    parent_path             = "/Shared/provider-test"
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial black,avant garde"&gt;&lt;STRONG&gt;Argument Reference&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;The following arguments are supported:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;display_name&amp;nbsp;&lt;/SPAN&gt;- (Required) The display name of the dashboard.&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;warehouse_id&amp;nbsp;&lt;/SPAN&gt;- (Required) The warehouse ID used to run the dashboard.&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;serialized_dashboard &lt;/SPAN&gt;- (Optional) The contents of the dashboard in serialized string form. Conflicts with&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;file_path.&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;file_path&amp;nbsp;&lt;/SPAN&gt;- (Optional) The path to the dashboard JSON file. Conflicts with&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;serialized_dashboard.&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;embed_credentials&amp;nbsp;&lt;/SPAN&gt;- (Optional) Whether to embed credentials in the dashboard. Default is&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;true.&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;parent_path&amp;nbsp;&lt;/SPAN&gt;- (Required) The workspace path of the folder containing the dashboard. Includes leading slash and no trailing slash.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jul 2024 05:59:08 GMT</pubDate>
      <guid>https://community.databricks.com/t5/community-articles/terraform-support-for-ai-bi-dashboards/m-p/81035#M200</guid>
      <dc:creator>Ajay-Pandey</dc:creator>
      <dc:date>2024-07-30T05:59:08Z</dc:date>
    </item>
    <item>
      <title>Re: Terraform support for AI/BI dashboards</title>
      <link>https://community.databricks.com/t5/community-articles/terraform-support-for-ai-bi-dashboards/m-p/148309#M1008</link>
      <description>&lt;P&gt;if the content of `file_path` has changed, terraform detects no changes. It is better if you make it checking md5 of the file to allow resource updates.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Feb 2026 12:03:13 GMT</pubDate>
      <guid>https://community.databricks.com/t5/community-articles/terraform-support-for-ai-bi-dashboards/m-p/148309#M1008</guid>
      <dc:creator>gandalfthearab</dc:creator>
      <dc:date>2026-02-13T12:03:13Z</dc:date>
    </item>
  </channel>
</rss>

