DEV Community

jainnehaa
jainnehaa

Posted on

Azure Resource Hierarchy

Azure resources are organized hierarchically as :

Tenant → Management Group → Subscription → Resource Group → Resources.
Enter fullscreen mode Exit fullscreen mode

What these terms stand for :

  • Tenant represents the Entra ID identity boundary
  • Subscriptions are billing and governance boundaries
  • Resource Groups logically organize related resources

For authentication and automation
Azure uses Service Principals, which are non-human identities tied to applications.
A Service Principal is created from an App Registration.

  • Authentication typically uses Tenant ID, Client ID, and Client Secret.
  • After authentication, Azure RBAC controls Authorization and permissions on subscriptions, resource groups, or resources
  • Managed Identities are Azure-managed Service Principals that avoid secret management and are preferred when running workloads inside Azure

Top comments (0)