Remediation
From Azure Portalโ
- Log in to the Azure portal using https://portal.azure.com.
- Go to
App Services. - Select each app.
- Under
Settings, selectIdentity. - Under the
System assignedpane, setStatustoOn.
From Azure CLIโ
To register with Entra ID for an existing app, run the following command:
az webapp identity assign \
--resource-group {{resource-group-name}} \
--name {{app-name}}
From PowerShellโ
To register with Entra ID for an existing app, run the following command:
Set-AzWebApp `
-AssignIdentity $True `
-ResourceGroupName {{resource-group-name}} `
-Name {{app-name}}