<?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 issue with azure databricks workspace after we disable public network access in Data Engineering</title>
    <link>https://community.databricks.com/t5/data-engineering/issue-with-azure-databricks-workspace-after-we-disable-public/m-p/66146#M33028</link>
    <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;We had azure databricks workspaces created thru terraform with public network access enabled to true and everything was working great. recently we have disabled the public network access and started to face issues.&lt;/P&gt;&lt;P&gt;terraform is uanble to add user/admins to workspace and giving us weird errors.&lt;/P&gt;&lt;P&gt;1. cannot read service principal: invalid charecter '&amp;lt;' begining of the value&lt;/P&gt;&lt;P&gt;2. cannot read workspace config: invalid charecter '&amp;lt;' begining of the value&lt;/P&gt;&lt;P&gt;we are using azurerm provider version 3.35.0 and databricks provider 1.7.0&lt;/P&gt;&lt;P&gt;And also we have private end points enabled for azure databricks workspace and it should go by private network.&lt;/P&gt;&lt;P&gt;Any help will be greatly appreaciated.&lt;/P&gt;</description>
    <pubDate>Fri, 12 Apr 2024 13:59:01 GMT</pubDate>
    <dc:creator>Ravikumashi</dc:creator>
    <dc:date>2024-04-12T13:59:01Z</dc:date>
    <item>
      <title>issue with azure databricks workspace after we disable public network access</title>
      <link>https://community.databricks.com/t5/data-engineering/issue-with-azure-databricks-workspace-after-we-disable-public/m-p/66146#M33028</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;We had azure databricks workspaces created thru terraform with public network access enabled to true and everything was working great. recently we have disabled the public network access and started to face issues.&lt;/P&gt;&lt;P&gt;terraform is uanble to add user/admins to workspace and giving us weird errors.&lt;/P&gt;&lt;P&gt;1. cannot read service principal: invalid charecter '&amp;lt;' begining of the value&lt;/P&gt;&lt;P&gt;2. cannot read workspace config: invalid charecter '&amp;lt;' begining of the value&lt;/P&gt;&lt;P&gt;we are using azurerm provider version 3.35.0 and databricks provider 1.7.0&lt;/P&gt;&lt;P&gt;And also we have private end points enabled for azure databricks workspace and it should go by private network.&lt;/P&gt;&lt;P&gt;Any help will be greatly appreaciated.&lt;/P&gt;</description>
      <pubDate>Fri, 12 Apr 2024 13:59:01 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/issue-with-azure-databricks-workspace-after-we-disable-public/m-p/66146#M33028</guid>
      <dc:creator>Ravikumashi</dc:creator>
      <dc:date>2024-04-12T13:59:01Z</dc:date>
    </item>
    <item>
      <title>Re: issue with azure databricks workspace after we disable public network access</title>
      <link>https://community.databricks.com/t5/data-engineering/issue-with-azure-databricks-workspace-after-we-disable-public/m-p/66192#M33047</link>
      <description>&lt;P&gt;Were you able to add the needed up addresses to the list in the networking settings?&lt;/P&gt;</description>
      <pubDate>Sat, 13 Apr 2024 17:27:21 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/issue-with-azure-databricks-workspace-after-we-disable-public/m-p/66192#M33047</guid>
      <dc:creator>koushiknpvs</dc:creator>
      <dc:date>2024-04-13T17:27:21Z</dc:date>
    </item>
    <item>
      <title>Re: issue with azure databricks workspace after we disable public network access</title>
      <link>https://community.databricks.com/t5/data-engineering/issue-with-azure-databricks-workspace-after-we-disable-public/m-p/66246#M33061</link>
      <description>&lt;P&gt;we have created a private endpoint for our azure databricks workspace is this not enough. Do we need to also explictly set up setwork security rule to allow traffic from private endpoint to databricks workspace.&lt;/P&gt;&lt;P&gt;Also required NSG rules for workspace is set to 'No Azure Databricks Rules' do we need to change this to 'All Rules' ?.&lt;/P&gt;&lt;P&gt;Could you elaborate on this please ?.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 15 Apr 2024 08:38:30 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/issue-with-azure-databricks-workspace-after-we-disable-public/m-p/66246#M33061</guid>
      <dc:creator>Ravikumashi</dc:creator>
      <dc:date>2024-04-15T08:38:30Z</dc:date>
    </item>
    <item>
      <title>Re: issue with azure databricks workspace after we disable public network access</title>
      <link>https://community.databricks.com/t5/data-engineering/issue-with-azure-databricks-workspace-after-we-disable-public/m-p/66294#M33076</link>
      <description>&lt;P&gt;we use the following code to create private endpoint and on UI we can see the private endpoint connection status as approved.&lt;/P&gt;&lt;PRE&gt;resource "azurerm_private_endpoint" "example" {
  name                = "example-endpoint"
  location            = azurerm_resource_group.example.location
  resource_group_name = azurerm_resource_group.example.name
  subnet_id           = azurerm_subnet.endpoint.id

  private_service_connection {
    name                           = "example-privateserviceconnection"
    private_connection_resource_id = azurerm_private_link_service.example.id
    is_manual_connection           = false
  }
}&lt;/PRE&gt;&lt;P&gt;After we disable public network access databricks provider is unable to add users/service principal to the azure daatbricks workspace.&lt;/P&gt;&lt;P&gt;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/103287"&gt;@koushiknpvs&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 15 Apr 2024 18:57:43 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/issue-with-azure-databricks-workspace-after-we-disable-public/m-p/66294#M33076</guid>
      <dc:creator>Ravikumashi</dc:creator>
      <dc:date>2024-04-15T18:57:43Z</dc:date>
    </item>
    <item>
      <title>Re: issue with azure databricks workspace after we disable public network access</title>
      <link>https://community.databricks.com/t5/data-engineering/issue-with-azure-databricks-workspace-after-we-disable-public/m-p/88556#M37548</link>
      <description>&lt;P&gt;Do you got any solution for this issue? I am also facing the same issue.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Sep 2024 15:29:10 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/issue-with-azure-databricks-workspace-after-we-disable-public/m-p/88556#M37548</guid>
      <dc:creator>Mohamednazeer</dc:creator>
      <dc:date>2024-09-04T15:29:10Z</dc:date>
    </item>
  </channel>
</rss>

