rg

Resource Group

GeneralAzure
General

General information about the service.

Description

Logical containers for resources deployed within an Azure subscription.

Namespace and Entity

Microsoft.Resources/resourceGroups

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

rg-

Length

1-90

Valid Characters

Alphanumerics, hyphens, underscores.

Scope

tenant

Code

Deploy your infrastructure as code using your preferred tooling.

Official DocumentationTerraform
terraform
1resource "azurerm_resource_group" "main" {
2 name = "rg-${var.project}-${var.environment}-${var.location_short}"
3 location = var.location
4
5 tags = {
6 Environment = var.environment
7 Project = var.project
8 ManagedBy = "Terraform"
9 }
10}
Utilities

Utilities to support app deployment or configuration.