Skip to main content

Grant Azure permissions to a System assigned Managed Identity using PowerShell


Get System Managed Identity Object ID using PowerShell

In this example, the System Managed Identity is enabled on the Automation Account called test-aa

Get-AzADServicePrincipal -DisplayName "test-aa"
 
$MI = Get-AzADServicePrincipal -DisplayName "test-aa"
$MI.id

Copy the Object ID

get azadserviceprincipal powershell

Get System Managed Identity Object ID from Azure Portal

Automation Accounts - select Account
Identity - System assigned

Copy the Object (principal) ID

system managed identity object id

Grant System Managed Identity permissions

Assign System Managed Identity permissions using PowerShell New-AzRoleAssignment

The Managed Identity needs Reader permissions to the Automation Account resource group so it can execute Runbooks

$RGName = "test-rg"
$SystemMI = "e0b3c7f5-6717-4335-82f6-71416fa8cfb0"
 
New-AzRoleAssignment -ObjectId $SystemMI -ResourceGroupName $RGName -RoleDefinitionName "Reader"

new azroleassignment powershell

Check Managed Identity Azure Role Assignments

Automation Account - Identity
System assigned - Azure Role Assignments

check azure permissions

Reader role has been assigned to the Resource Group

reader role assigned

Managed Identity Enterprise Application

You can also view the System assigned Managed Identity under Enterprise applications

Entra ID - Enterprise applications
Application type: Managed Identities

Note the Object ID and Application ID

managed identity enterprise app

 

 


Filter articles by tag