Home > Software engineering >  What is the relation between azure tenant and azure devops?
What is the relation between azure tenant and azure devops?

Time:06-15

Usually the following is the flow:

Tenant (aka Azure AD) -> subscription -> resource group -> resource (VM, Az SQL, Disk, etc)

However the Azure DevOps is service that is not a resource. So what is the relation between azure tenant and azure devops? Does the organization (and projects) in azure devops reside under the azure tenant?

CodePudding user response:

So what is the relation between azure tenant and azure devops?

Relationship between Azure Tenant and Azure DevOps is similar to the relationship between an Azure Tenant and an Azure Subscription. An Azure Tenant is essentially an instance of Azure AD where you define your users. An Azure Subscription relies on an Azure Tenant for authenticating users accessing that Subscription.

Same is the deal with Azure DevOps. Azure DevOps relies on an Azure Tenant for authenticating users accessing the resources inside an instance of Azure DevOps.

You may find this link helpful in understanding the relationship between Azure AD and Azure Subscription: https://docs.microsoft.com/en-us/azure/active-directory/fundamentals/active-directory-how-subscriptions-associated-directory (same thing applies for Azure DevOps).

  • Related