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/resourceGroupsReferences
Chat
Powered by AITalk 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 Documentation
terraform
1resource "azurerm_resource_group" "main" {2 name = "rg-${var.project}-${var.environment}-${var.location_short}"3 location = var.location45 tags = {6 Environment = var.environment7 Project = var.project8 ManagedBy = "Terraform"9 }10}
Utilities
Utilities to support app deployment or configuration.