skip to Main Content

Powershell – Get-AzureADAuditSignInLogs multiple filters

I'm trying to Get last signin date for Global Admins $role = Get-AzureADDirectoryRole | Where-Object {$_.displayName -eq 'Global Administrator'} $admins = @(Get-AzureADDirectoryRoleMember -ObjectId $role.ObjectId | select DisplayName, UserPrincipalName) Foreach ($admin in $admins){ $upn = $admin.UserPrincipalName $signons = Get-AzureADAuditSignInLogs -Filter "UserPrincipalName…

VIEW QUESTION

Azure – issue when upgrading agic to 1.5.2

As our aks relate to two different agw, when upgrading AGIC by helm, we got this error: helm upgrade agic-ass application-gateway-kubernetes-ingress/ingress-azure --version 1.5.1 Error: UPGRADE FAILED: rendered manifests contain a resource that already exists. Unable to continue with update: IngressClass…

VIEW QUESTION

Azure Apim Bearer token

Hi guys im following the next tutorial from azure: https://learn.microsoft.com/en-us/rest/api/apimanagement/current-ga/subscription/create-or-update?tabs=HTTP&tryIt=true&source=docs [Azure create or update suscriptions] I already made it work,but i dont know from where comes from the Bearer token that the example uses Can anybody explain to me how…

VIEW QUESTION
Back To Top
Search