praveen_r
praveen_r

Reputation: 897

How to let developers with non-Admin access edit Azure Functions

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

Answers (1)

Vassili Altynikov
Vassili Altynikov

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

Related Questions