I have Subscription where lots of Resources and Resource group created, i want to list all user access and what type for access level user has like Owner contributor rider through the Powershell
i have script but it's only for subscriptions
get-azurermroleassignment|where{$_.RoleDefinitionname-like'contributor'-or$_.RoleDefinitionName-like'Owner'-or$_.RoleDefinitionName-like'Reader'} | Select DisplayName,SignInName,RoledefinitionName
Biren