Reputation: 897
I have setup an Azure function as an Admin and now I want to let my developers edit and test it, without sharing Admin access with them.
How do I add them to our profile and permission them with non-admin access?
Upvotes: 3
Views: 99
Reputation: 2059
You can use Role-Based Access Control (RBAC) to grant your developers access to the resource group that contains your Azure Function. Simply add them to the Contributor
role for that resource group.
Upvotes: 2