View all role assignment changes for Azure

Audit all the role changes for an Azure subscription

John Savill

April 17, 2016

1 Min Read
View all role assignment changes for Azure

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

 

About the Author

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.

You May Also Like