How to identify Azure Access control lists?

Sayeeda 21 Reputation points
2021-03-22T10:54:43.79+00:00

How to identify if a particular resource in Azure is configured with default access lists(NACLs)??

Azure Role-based access control
Azure Role-based access control
An Azure service that provides fine-grained access management for Azure resources, enabling you to grant users only the rights they need to perform their jobs.
666 questions
Microsoft Entra ID
Microsoft Entra ID
A Microsoft Entra identity service that provides identity management and access control capabilities. Replaces Azure Active Directory.
19,456 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Marilee Turscak-MSFT 33,801 Reputation points Microsoft Employee
    2021-03-30T21:18:00.19+00:00

    Based on the Manage and query access control lists article, it looks like there are a few options for querying Access Control Lists.

    To return a list of access control lists for a specified security namespace and token:

    GET https://dev.azure.com/{organization}/_apis/accesscontrollists/{securityNamespaceId}?api-version=6.0  
    

    To retrieve the list of access control list (ACL) entries for a Data Lake Analytics catalog.

    GET https://{accountName}.{adlaCatalogDnsSuffix}/catalog/usql/acl?api-version=2016-11-01  
    

    To list the access control list (ACL) entries by database from a Data Lake Analytics catalog:

    https://learn.microsoft.com/en-us/rest/api/datalakeanalytics/catalog/listaclsbydatabase  
    

    https://learn.microsoft.com/en-us/azure/storage/blobs/data-lake-storage-access-control

    0 comments No comments