Skip to content

Instantly share code, notes, and snippets.

View bmomartins's full-sized avatar
🎯
Focusing

Bruno Martins bmomartins

🎯
Focusing
View GitHub Profile
@cmatskas
cmatskas / ListRBACForAllResources.ps1
Created January 4, 2017 21:24
ListRBACForAllResources
Login-AzureRmAccount
Get-AzureRmSubscription
Select-AzureRmSubscription -subscriptionId <yourSubscriptionId>
Get-AzureRmResource | foreach-object {Get-AzureRmRoleAssignment -ResourceGroupName $_.Name}