<?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: Unity through terraform in Data Engineering</title>
    <link>https://community.databricks.com/t5/data-engineering/unity-through-terraform/m-p/31384#M22841</link>
    <description>&lt;P&gt;The variation I saw with this, on AWS, was this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"You will remember that there are two ways to specify the provider= part of this. One provider config binds to account.cloud.databricks.com and the other binds to your-company-and-workspace.cloud.databricks.com.   The second example has a "host" parameter to fill in, a mandatory parameter.   You're using one config when it wants the other one.  In this case, you're using the first type and it wants the second type."&lt;/P&gt;</description>
    <pubDate>Tue, 20 Sep 2022 19:07:35 GMT</pubDate>
    <dc:creator>jab-in-sf</dc:creator>
    <dc:date>2022-09-20T19:07:35Z</dc:date>
    <item>
      <title>Unity through terraform</title>
      <link>https://community.databricks.com/t5/data-engineering/unity-through-terraform/m-p/31383#M22840</link>
      <description>&lt;P&gt;I am working on automation of Unity through terraform. I have referred below link link to get started :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://registry.terraform.io/providers/databricks/databricks/latest/docs/guides/unity-catalog-azure" target="test_blank"&gt;https://registry.terraform.io/providers/databricks/databricks/latest/docs/guides/unity-catalog-azure&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am facing issue when I create metastore using terraform :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;esource "databricks_metastore" "this" {&lt;/P&gt;&lt;P&gt;  name = "primary"&lt;/P&gt;&lt;P&gt;  storage_root = format("abfss://%s@%s.dfs.core.windows.net/",&lt;/P&gt;&lt;P&gt;    azurerm_storage_container.unity_catalog.name,&lt;/P&gt;&lt;P&gt;  azurerm_storage_account.unity_catalog.name)&lt;/P&gt;&lt;P&gt;  force_destroy = true&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;resource "databricks_metastore_data_access" "first" {&lt;/P&gt;&lt;P&gt;  metastore_id = databricks_metastore.this.id&lt;/P&gt;&lt;P&gt;  name         = "the-keys"&lt;/P&gt;&lt;P&gt;  azure_managed_identity {&lt;/P&gt;&lt;P&gt;    access_connector_id = azapi_resource.access_connector.id&lt;/P&gt;&lt;P&gt;  }&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  is_default = true&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;resource "databricks_metastore_assignment" "this" {&lt;/P&gt;&lt;P&gt;  workspace_id         = local.databricks_workspace_id&lt;/P&gt;&lt;P&gt;  metastore_id         = databricks_metastore.this.id&lt;/P&gt;&lt;P&gt;  default_catalog_name = "hive_metastore"&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;##################################&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please find error as below :&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="image"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/1488i57E8C5C70C14DB56/image-size/large?v=v2&amp;amp;px=999" role="button" title="image" alt="image" /&gt;&lt;/span&gt;I have also tried changing provider to databricks/databricks. still same problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help us to resolve this&lt;/P&gt;</description>
      <pubDate>Mon, 19 Sep 2022 14:40:15 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/unity-through-terraform/m-p/31383#M22840</guid>
      <dc:creator>saurabh12521</dc:creator>
      <dc:date>2022-09-19T14:40:15Z</dc:date>
    </item>
    <item>
      <title>Re: Unity through terraform</title>
      <link>https://community.databricks.com/t5/data-engineering/unity-through-terraform/m-p/31384#M22841</link>
      <description>&lt;P&gt;The variation I saw with this, on AWS, was this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"You will remember that there are two ways to specify the provider= part of this. One provider config binds to account.cloud.databricks.com and the other binds to your-company-and-workspace.cloud.databricks.com.   The second example has a "host" parameter to fill in, a mandatory parameter.   You're using one config when it wants the other one.  In this case, you're using the first type and it wants the second type."&lt;/P&gt;</description>
      <pubDate>Tue, 20 Sep 2022 19:07:35 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/unity-through-terraform/m-p/31384#M22841</guid>
      <dc:creator>jab-in-sf</dc:creator>
      <dc:date>2022-09-20T19:07:35Z</dc:date>
    </item>
    <item>
      <title>Re: Unity through terraform</title>
      <link>https://community.databricks.com/t5/data-engineering/unity-through-terraform/m-p/31385#M22842</link>
      <description>&lt;P&gt;Hi @saurabh pandey​&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope all is well! Just wanted to check in if you were able to resolve your issue and would you be happy to share the solution or mark an answer as best? Else please let us know if you need more help.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We'd love to hear from you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 02 Oct 2022 10:59:10 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/unity-through-terraform/m-p/31385#M22842</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-10-02T10:59:10Z</dc:date>
    </item>
    <item>
      <title>Re: Unity through terraform</title>
      <link>https://community.databricks.com/t5/data-engineering/unity-through-terraform/m-p/31386#M22843</link>
      <description>&lt;P&gt;Not sure if you got this working, but I noticed you are using provider: `databrickslabs/databricks`, hence why this is not avaialable. You should be using new provider: `databricks/databricks`: &lt;A href="https://registry.terraform.io/providers/databricks/databricks/latest/docs" target="test_blank"&gt;https://registry.terraform.io/providers/databricks/databricks/latest/docs&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Oct 2022 08:50:10 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/unity-through-terraform/m-p/31386#M22843</guid>
      <dc:creator>Pat</dc:creator>
      <dc:date>2022-10-19T08:50:10Z</dc:date>
    </item>
  </channel>
</rss>

