How To Configure Azure Active Directory?
Last Updated :
01 May, 2023
Azure Active Directory is a cloud based service provided by Microsoft. It is a identity provider and access management (IAM) service. If you use any of the services like Microsoft 365, Outlook etc. you're already using Azure AD. When you log into these services, you're, in fact, logging into Azure AD.
Uses of Azure AD
- Service like Skype, Outlook and OneDrive.
- Services used by organizations such as Teams, Office 365 and SharePoint.
- To connect to Azure to access Resource Groups, Subscriptions, Virtual Machines etc.
- Used by Web Developers to secure access to web services and applications.
Benefits of Using an Identity Provider
- User only needs to remember single set of credentials.
- Management of users becomes centralized as it can be done in Azure itself.
- High level of security is provided by Microsoft.
- Additional features like Multi Factor Authentication(MFA), Single sign-on and Role Based Access Control (RBAC) are provided by Azure.
Need To Configure Azure Active Directory
Azure AD needs to be configured in order to manage access and authentication to resources and applications in Azure.
A scenario where we need to configire Azure Ad can be that when we create a new user in Microsoft Azure, the default role of this user is User and hence this user can't perform all the actions that are possible in Azure. But, this user can create his own Azure Acitve Directory to be able to do almost everything in Azure.
Creating a New User in Azure Active Directory
Step 1: Navigate to your Azure portal.
Step 2: Type Azure Active Directory or AAD in the search bar and select Azure Active Directory from the options.
Step 3: From the left-hand menu, select Users under Manage category.
Step 4: Click on New User option. Then click on Create new user.
On the next screen you will be prompted to fill the details about the new user.
- User name: A unique identifier in Azure portal.
- Name: The display name of user in Azure portal.
- Password: You can either create your own password or choose the auto-generate password option.
Note: Remember the auto generated password or the password you create. This will be used to sign-in to this user later.
Step 5: Click Create.
Step 6: Sign in to this newly created user.
- Select the name of the user.
- On the next screen, copy the username, given under the name of the user.
- Now sign-in to Microsoft Azure using this username and password.
Note: Currently, this user is part of Administrator's Azure AD, and therefore has no resource groups or privileges assigned to them. Go to Azure Active Directory, choose Manage tenants. On the next screen, click on the tenant name.
The new panel shows the role as User.
Creating a New Azure Active Directory
Step 1: Navigate to your Azure portal and click on Create a Resource option.
Step 2: Type Azure Active Directory in the search bar. Then choose Azure Active Directory.
Step 3: On the next screen, select Create.
Step 4: Under the Configuration Panel, fill the details about the new tenant.
- Organization name: A unique name for the organization.
- Initial domain name: Global Unique name for all Azure AD Resources.
- Country or region: The region where the tenant will reside.
Step 5: Click on Review+Create. On the next screen, click on Create.
Step 6: Re log-in to this user's account.
Step 7: Click on the username in the top right corner and then click on Switch directory.
Step 8: Now, click on Switch in front the name of organization on the next screen.
Step 9: Now, to check the role of this user:
- Type Users in the search bar and hit enter.
- On the next screen, select the newly created user.
- Under Manage, select Assigned roles.
Now, it will show the role as Global Administrator.
You can now manage all aspects of Azure AD and Microsoft services that use Azure AD identities.
Similar Reads
Non-linear Components In electrical circuits, Non-linear Components are electronic devices that need an external power source to operate actively. Non-Linear Components are those that are changed with respect to the voltage and current. Elements that do not follow ohm's law are called Non-linear Components. Non-linear Co
11 min read
Spring Boot Tutorial Spring Boot is a Java framework that makes it easier to create and run Java applications. It simplifies the configuration and setup process, allowing developers to focus more on writing code for their applications. This Spring Boot Tutorial is a comprehensive guide that covers both basic and advance
10 min read
Class Diagram | Unified Modeling Language (UML) A UML class diagram is a visual tool that represents the structure of a system by showing its classes, attributes, methods, and the relationships between them. It helps everyone involved in a projectâlike developers and designersâunderstand how the system is organized and how its components interact
12 min read
Steady State Response In this article, we are going to discuss the steady-state response. We will see what is steady state response in Time domain analysis. We will then discuss some of the standard test signals used in finding the response of a response. We also discuss the first-order response for different signals. We
9 min read
Backpropagation in Neural Network Back Propagation is also known as "Backward Propagation of Errors" is a method used to train neural network . Its goal is to reduce the difference between the modelâs predicted output and the actual output by adjusting the weights and biases in the network.It works iteratively to adjust weights and
9 min read
Polymorphism in Java Polymorphism in Java is one of the core concepts in object-oriented programming (OOP) that allows objects to behave differently based on their specific class type. The word polymorphism means having many forms, and it comes from the Greek words poly (many) and morph (forms), this means one entity ca
7 min read
3-Phase Inverter An inverter is a fundamental electrical device designed primarily for the conversion of direct current into alternating current . This versatile device , also known as a variable frequency drive , plays a vital role in a wide range of applications , including variable frequency drives and high power
13 min read
What is Vacuum Circuit Breaker? A vacuum circuit breaker is a type of breaker that utilizes a vacuum as the medium to extinguish electrical arcs. Within this circuit breaker, there is a vacuum interrupter that houses the stationary and mobile contacts in a permanently sealed enclosure. When the contacts are separated in a high vac
13 min read
AVL Tree Data Structure An AVL tree defined as a self-balancing Binary Search Tree (BST) where the difference between heights of left and right subtrees for any node cannot be more than one. The absolute difference between the heights of the left subtree and the right subtree for any node is known as the balance factor of
4 min read
What Is Cloud Computing ? Types, Architecture, Examples and Benefits Nowadays, Cloud computing is adopted by every company, whether it is an MNC or a startup many are still migrating towards it because of the cost-cutting, lesser maintenance, and the increased capacity of the data with the help of servers maintained by the cloud providers. Cloud Computing means stori
15 min read