Sign up for the ITPro Today newsletter
Stay on top of the IT universe with commentary, news analysis, how-to's, and tips delivered to your inbox daily.
Audit all the role changes for an Azure subscription
April 17, 2016
Q. How can I easily view all the role assignment changes for my Azure subscription?
A. The PowerShell below will show all role changes made over the past week. You could modify the code to change the timespan as required.
Get-AzureRMAuthorizationChangeLog -StartTime ([DateTime]::Now - [TimeSpan]::FromDays(7)) | FT Caller,Action,RoleName,PrincipalType,PrincipalName,ScopeType,ScopeName
You May Also Like