Skip to main content
Management groups vanishing from Azure portal after rename
  1. Posts/

Management groups vanishing from Azure portal after rename

·99 words·1 min
Christoph Petersen
Author
Christoph Petersen

If you use Management groups to manage Azure at scale you may get hit with a bug in the Azure portal, that I discovered today. If you rename the Root Tenant Group the portal stops showing any previously create management groups. Their assignment are still active and you can still manage them using PowerShell or CLI but the portal will start show the out-of-the-box experience.

To fix this, you can simply rename the management group back to the default name:

az account management-group update --name <GUID> --display-name "Root Tenant Group"

The Azure portal team is working on a fix.

Related

Azure Notification Hub race condition

·375 words·2 mins
Both development and production environments are deployed in a fully automated fashion using ARM templates. As part of these deployments we also create Notification Hubs and related authorization rules.

Setting App Service connection strings in ARM

·144 words·1 min
For automatic deployment of test environments we are spinning up App Service instances and want to automatically set connection strings for the database and other services in the same template.

Fetching all branches and tags from a remote Git repository

·164 words·1 min
In my first days at HorseAnalytics, one of the first tasks was to review the codebase and streamline the build and release process. That meant to move all repositories over to Azure DevOps so that we can use the pipelines to build and release new versions of our products.