Hello,
I would need give access to one of our teams to Azure AD sing-in logs which are located in our centralized law. Azure AD logs are one of most important logs for many perspective so I would need come up with solution that could restrict access to just specific logs. Basically team need access to only SigninLogs
table.
I came up with threee possible solutions
- Sending those Azure AD logs to different law where I can give them access. I'm not just sure is this possible even yet? Sending logs to event hub or storage account is possible but don't think at will help me now.
- Creating custom rbac that allows access only to
SigninLogs
table with something like this
"Actions": [ "Microsoft.OperationalInsights/workspaces/read", "Microsoft.OperationalInsights/workspaces/query/read", "Microsoft.OperationalInsights/workspaces/query/SigninLogs/read" ],
- Export with Logic apps which allows me to Parse JSON if needed to delete some rows but is exporting to another laws supported...?
Are there any another solutions that could be also possible here? End place for the data do not need to be log analytics but data needs to be in that kind of format that it is possible to read and create queries / dashboards / workbooks.