'How to obtain a subset of Azure app registrations
I'm looking to create a powershell script that identifies (and sends an e-mail) for any app registration secrets that are going to expire. I know how to obtain a list of ALL of our app registrations by running one of the below commands
Get-AzureADApplication -all $true
Or alternatively by finding one app registration
Get-AzureADApplication -filter "displayName -eq 'Our App Name'"
I'm interested in obtaining the object IDs of only a small subset of app registrations (like only 10) which I can then loop through to find the expiry dates.
I'm fine with the send e-mail piece, but does anyone know if this is possible to extract the subset of app registrations from azure?
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|