forked from FlorianSLZ/scloud
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5950c27
commit cd3360c
Showing
1 changed file
with
15 additions
and
0 deletions.
There are no files selected for viewing
15 changes: 15 additions & 0 deletions
15
Automations/AZ Automation with Managed Identity/MgId_removePermissions.ps1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Connect to Microsoft Graph | ||
Connect-MgGraph -Scopes "Application.Read.All","AppRoleAssignment.ReadWrite.All,RoleManagement.ReadWrite.Directory" | ||
|
||
# Select beta profile | ||
Select-MgProfile Beta | ||
|
||
# You will be prompted for the Name of you Managed Identity | ||
$MdId_Name = Read-Host "Name of your Managed Identity" | ||
$MdId_ID = (Get-MgServicePrincipal -Filter "displayName eq '$MdId_Name'").id | ||
|
||
# Removing all Graph scopes | ||
$MdId_permissions = Get-MgServicePrincipalAppRoleAssignment -ServicePrincipalId $MdId_ID | ||
ForEach($Assignment in $MdId_permissions){ | ||
Remove-MgServicePrincipalAppRoleAssignment -AppRoleAssignmentId $Assignment.Id -ServicePrincipalId $MdId_ID | ||
} |