-
-
Notifications
You must be signed in to change notification settings - Fork 5.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature Request: Overview Assigned AzureAD Roles #296
Comments
There are Graph endpoints for this so it shouldn't be too bad https://docs.microsoft.com/en-us/graph/api/resources/directoryrole?view=graph-rest-1.0 |
I would like to work on this please! |
Great! I assigned you (@lwhitelock) to the issue. Have fun working on it! |
Thank you for creating a feature request! feature requests are prioritized by our direct contributors. Your current priority is set to "No Priority". If you are a sponsor you can request an upgrade of priority, If you want this feature to be integrated you can always do this yourself by checking out our contributions guide at https://kelvintegelaar.github.io/CIPP/GettingStarted/Contributions.html. Contributors to the CIPP project reserve the right to close feature requests at will. If your feature request is not picked up in 2 week by a contributor it will be closed. If you'd like this feature request to be assigned to you, please comment "I would like to work on this please!". |
Resolves KelvinTegelaar#296
added in dev by @lwhitelock |
Currently when locking down tenants I use this powershell cmdlet:
Get-MsolRole | %{$role = $_.name; Get-MsolRoleMember -RoleObjectId $_.objectid} | select @{Name="Role"; Expression = {$role}}, DisplayName, EmailAddress
This way I have a nice single pane view of alle the roles assigned to users especially the administrative ones.
I think if you have a button under "Reports" it would be nice you can this way easly see who have certain roles within a tenant.
The text was updated successfully, but these errors were encountered: