An Azure service that provides an enterprise-wide hyper-scale repository for big data analytic workloads and is integrated with Azure Blob Storage.
Hi @Amit Puthenpura (Wipro Ltd)
It sounds like you're looking to find or enable the Managed Identity of your Azure Data Lake Storage (ADLS) Gen2 account and share it for secure access. Here's how you can do that:
Finding or Enabling Managed Identity
- Navigate to Azure Portal: Go to the Azure Portal.
- Access Your Storage Account: Find and select your ADLS Gen2 storage account.
- Enable Managed Identity:
- In the left pane, select Identity under the Settings category.
- Choose either System assigned to enable a system-assigned identity or User assigned if you prefer to create a user-assigned identity.
- For system-assigned, click on the Status toggle to set it to On and then save the changes.
- Choose either System assigned to enable a system-assigned identity or User assigned if you prefer to create a user-assigned identity.
- In the left pane, select Identity under the Settings category.
Sharing the Managed Identity for Secure Access
To give access to your Managed Identity:
- Go to Access Control (IAM):
- Within your storage account settings, select Access Control (IAM) from the left navigation menu.
- Add Role Assignment:
- Click on Add role assignment.
- Under Role, choose Storage Blob Data Contributor or Storage Blob Data Owner, depending on the level of access required.
- For Members, select Managed identity and choose the identity you just created or enabled from the available list.
- Finally, review the settings and click Review + Assign to confirm.
- For Members, select Managed identity and choose the identity you just created or enabled from the available list.
- Under Role, choose Storage Blob Data Contributor or Storage Blob Data Owner, depending on the level of access required.
- Click on Add role assignment.
This way, you'll have securely shared your Managed Identity for access to the ADLS Gen2 storage.
References
For more detailed instructions, you can check out the following documentation:
- Identity based access - Managed Identity
- Use managed identities with Azure Data Lake Storage
- Manage Azure Storage access with Managed Identity
- Assign roles and access control in Azure
Hope this helps! Let me know if you have any more questions.