I'm creating a Virtual Machine in Azure. Now How to make others to access that Virtual Machine. Im looking for some thing like giving permission for a set of users based on role. The same is possible in AWS through IAM. Now how to do the same in Azure. Kindly Help.
Equivalent of IAM
in Azure is Role-Based Access Control (RBAC)
. Using RBAC you can assign fine-grained permissions on your resources in Azure to users in your organization.
You can start with some of the Built In Roles
- Reader
, Contributor
, Owner
or Virtual Machine Contributor
. If you want even more fine-grained permissions, you can create your own Custom Roles
.