IAM Creating IAM Services In Azure - CloudDarsh/OracleCloud GitHub Wiki
Creating IAM Services
Creating User
We have to login into Azure Console 🡪 search for User 🡪 User
Here we have to click on New user
Fill all the details of user and click on create
We can see user is created.
Checking User from CLI
We have to run this command to list the Users in our Azure AD tenancy.
az ad user list --output table
Creating Group
Now we have to create a group, search for Group Groups New Group
Enter the details and click on create
Group created
Checking Group from CLI
We have to run this command to list the Groups in our Azure AD tenancy.
az ad group list --output table
Adding the user to group
For adding the user to a group, we have to go inside the group created Manage Members Add members.
We have to select the users tab and select the user to add in the group. .
Now we can see the user added to the group.
Creating Resource Group
Search for resource group
Click on create and fill the details and click on create.
Resource group created.
Checking Resource Group from CLI
We have to run this command to list the Resource Groups in our Azure AD tenancy.
az group list --output table
Role Assignment
Here we have to assign a role to the resource group, for that we have to go inside the resource groups Access Control(IAM) Add role assignment.
Select the required role and in the members Add members Select the group Assign Access.