Azure Arc Service Principle link Broken?

Baldwin, Joshua 0 Reputation points
2026-08-04T20:49:13.63+00:00

When i try to setup a service principle under Azure Arc, as soon as i click the link it seems like it kills the page. No other links on the left menu seem to work. Is there a current issue im not seeing? Refresh does not work, and i have to go to my Arc subscription, then navigate back to Arc and im able to interact with the page again.

Azure Arc
Azure Arc

A Microsoft cloud service that enables deployment of Azure services across hybrid and multicloud environments.


1 answer

Sort by: Newest
  1. Adithya Prasad K 1,395 Reputation points Microsoft External Staff Moderator
    2026-08-05T01:11:17.11+00:00

    Hi Baldwin,

    This behavior looks like an Azure portal blade/UI failure rather than a service-principal permissions issue. I found another report describing this exact Azure Arc behavior from August 4, 2026, but there is currently no published response confirming a widespread outage or known issue. [learn.microsoft.com]

    1. Check Azure Service Health for active or emerging issues affecting Azure Arc, Azure Resource Manager, or the Azure portal in the affected tenant and region.
    2. Reproduce the issue in an InPrivate/Incognito window.
    3. Test with another supported browser and temporarily disable browser extensions.
    4. Clear the browser cache and site data for portal.azure.com, then sign in again.
    5. Confirm whether the problem affects:
      • All users or only one user
        • All subscriptions or one subscription
          • Multiple tenants
            • Multiple browsers and networks

    Workaround

    You can create the Azure Arc onboarding service principal through Azure CLI instead of the affected portal blade. Microsoft documents Azure CLI, Azure PowerShell, and Azure portal as supported creation methods. The identity should receive the Azure Connected Machine Onboarding role at the required subscription or resource-group scope. [learn.microsoft.com]

    az login

    az account set --subscription "<subscription-id>"

    az ad sp create-for-rbac </span>

    --name "<service-principal-name>" </span>

    --role "Azure Connected Machine Onboarding" </span>

    --scopes "/subscriptions/<subscription-id>/resourceGroups/<resource-group-name>"

    Store the returned appId, password, and tenant securely because the secret is displayed only when created.

    Was this answer helpful?

    1 person found this answer helpful.
    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.