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

image

Here we have to click on New user

image

Fill all the details of user and click on create

image

We can see user is created.

image

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

image

Creating Group

Now we have to create a group, search for Group  Groups  New Group

image

Enter the details and click on create

image

Group created

image

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

image

Adding the user to group

For adding the user to a group, we have to go inside the group created  Manage  Members  Add members.

image

We have to select the users tab and select the user to add in the group. .

image

Now we can see the user added to the group.

image

Creating Resource Group

Search for resource group

image

Click on create and fill the details and click on create.

image

Resource group created.

image

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

image

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.

image

Select the required role and in the members  Add members  Select the group  Assign Access.

image