Pulkit
Pulkit

Reputation: 11

How to stop users from accessing a certain mount point in Azure Databricks

I use two different ADLS one is open for all and the other one is a secured location with only the privilege given to a few individuals. But these privileges given through RBAC are only applicable through the Azure portal and the users are still able to access the secured ADLS through mount point setup on Azure Databricks, Is there a way to restrict the access on this mount point?

Thanks.

Upvotes: 1

Views: 795

Answers (1)

Abhishek Khandave
Abhishek Khandave

Reputation: 3240

As per official documentation and MSFT Q&A, All users have read and write access to the objects in object storage mounted to DBFS. We cannot restrict users from using the mount point.

You can raise feature request here

However you can use Role-based access control for notebooks, clusters, jobs and tables feature by selecting Premium tier

enter image description here

Upvotes: 1

Related Questions