mg

Management Group

GeneralAzure
General

General information about the service.

Description

Azure Management Groups provide a level of scope above subscriptions for organizing and applying governance.

Namespace and Entity

Microsoft.Management/managementGroups

Chat

Powered by AI

Talk to this service to learn more about it.

Suggested questions:

Naming

The conventions, rules, and restrictions for naming this service.

Naming Convention

mg-

Length

1-90

Valid Characters

Alphanumerics, hyphens, underscores.

Scope

tenant

Code

Deploy your infrastructure as code using your preferred tooling.

terraform
1resource "azurerm_management_group" "main" {
2 display_name = "mg-${var.environment}"
3 parent_management_group_id = data.azurerm_management_group.parent.id
4
5 subscription_ids = var.subscription_ids
6}
Utilities

Utilities to support app deployment or configuration.