Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

azure permission to create "service principal"

Hello how are you? Im only owner of my organization subscription in Azure and I need to create service principals.

How can I give permission to my user? Or can I create a new role to assign this permission?

Any ideas?

Thanks in advance

like image 460
exitista Avatar asked Aug 22 '19 15:08

exitista


People also ask

Who can create a service principal in Azure?

A service principal is created when a user from that tenant has consented to the application's or API's use. ​This consent creates a one-to-many relationship between the multi-tenant application and its associated service principals.

How do I give access to SPN in Azure?

Find your SPN and tenant IDOpen Azure Active Directory, and then select Enterprise applications. Find your app in the list. Select the app to find the application ID and object ID: Go to the Microsoft Azure AD Overview page to find the tenant ID.


1 Answers

Note: The roles of the subscription and the roles of Azure Active directory are different.

Im only owner of my organization subscription in Azure and I need to create service principals.

You can follow this document: https://learn.microsoft.com/en-us/azure/active-directory/develop/howto-create-service-principal-portal

How can I give permission to my user? Or can I create a new role to assign this permission?

If I understand your issue correctly, you want to give the user permission to create service principals. If you are the admin of your Azure Active Directory, you can grant the user Application administrator role. Then the user will be able to create service principals. You can refer to this document.

like image 152
Tony Ju Avatar answered Oct 21 '22 11:10

Tony Ju