Reputation: 95
I have a ADF which has a managed identity able to access the ADLS. Now I need this ADF to call a Databricks notebook and this notebook should access the ADLS as well. Can I do it using the managed identity from ADF? How can I do this?
Upvotes: 2
Views: 5022
Reputation: 87154
Right now the Azure Active Directory credentials passthrough doesn't work with service principals & managed identity. You can use managed identity to connect to the Databricks workspace itself (see docs), but from the workspace you need to setup something to access data on ADLS. You have two possibilities:
Upvotes: 9