Managing IAM
6.1 What is Azure Identity and Access Management (IAM)?
Azure IAM helps you securely control who can access Azure resources and what actions they can perform.
Itβs based on:
Identity
Who you are (User, Group, Service Principal)
Role
What permissions you have (Reader, Contributor, Owner)
Scope
Where you have access (Subscription, Resource Group, Resource)
β IAM = Identity + Role + Scope
π οΈ 6.2 Creating a Service Principal (SP)
A Service Principal is like a "bot account" that Azure uses for automation and scripts.
π οΈ Create a Service Principal
Output example:
β
Save this output β youβll need the appId
, password
, and tenant
to log in programmatically.
π οΈ Create a Service Principal with a specific Role and Scope
β This limits the SPβs permissions to a specific Resource Group instead of the entire subscription.
π‘οΈ 6.3 Assigning Roles to Users and Service Principals
Roles control what actions an identity can perform.
Some common built-in roles:
Owner
Full control (including managing access)
Contributor
Create and manage resources (cannot manage access)
Reader
View resources only
π οΈ Assign a Role to a User or SP
--assignee
User, Group, or Service Principal ID
--role
Role name (Contributor, Reader, etc.)
--scope
Subscription, Resource Group, or Resource
β This gives permissions only at the specified scope.
π 6.4 Listing Role Assignments
View existing role assignments:
β Lists who has what role at what scope.
Filter by a specific user or Service Principal:
ποΈ 6.5 Removing Role Assignments
Remove a role assignment:
β Tip: Always double-check before deleting access!
π‘ 6.6 Best Practices for IAM with Azure CLI
Follow Least Privilege
Grant only the permissions needed
Use Role-Based Access Control (RBAC)
Assign built-in roles instead of custom policies unless necessary
Scope roles properly
Assign at the smallest necessary scope (resource, RG)
Rotate Service Principal credentials
SP passwords should be rotated regularly
Avoid using Owner unless necessary
Too much power can lead to accidental damage
π Module 6 Summary
Azure IAM basics
Control who can access Azure and what they can do
Create Service Principals
az ad sp create-for-rbac
Assign roles
az role assignment create
View role assignments
az role assignment list
Best practices
Least privilege, use scopes, rotate credentials
Last updated