issue with azure databricks workspace after we disable public network access
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-12-2024 06:47 AM - edited 04-12-2024 06:59 AM
Hi All,
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.
terraform is uanble to add user/admins to workspace and giving us weird errors.
1. cannot read service principal: invalid charecter '<' begining of the value
2. cannot read workspace config: invalid charecter '<' begining of the value
we are using azurerm provider version 3.35.0 and databricks provider 1.7.0
And also we have private end points enabled for azure databricks workspace and it should go by private network.
Any help will be greatly appreaciated.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-13-2024 10:27 AM
Were you able to add the needed up addresses to the list in the networking settings?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-15-2024 01:31 AM - edited 04-15-2024 01:38 AM
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.
Also required NSG rules for workspace is set to 'No Azure Databricks Rules' do we need to change this to 'All Rules' ?.
Could you elaborate on this please ?.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-15-2024 11:57 AM
we use the following code to create private endpoint and on UI we can see the private endpoint connection status as approved.
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 } }
After we disable public network access databricks provider is unable to add users/service principal to the azure daatbricks workspace.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-04-2024 08:29 AM
Do you got any solution for this issue? I am also facing the same issue.