Reputation: 811
In IIS we have a series of accounts an application pool can run under:
My question is if I have a site hosted on an Azure App Service do I have the equivalent accounts to choose from?
Upvotes: 0
Views: 463
Reputation: 716
In azure it has 2 option using managed identity ( particular user) and service principal account where you can go and register application in ad and give permission to your application.
Upvotes: 0
Reputation: 18387
There's no such a thing. The closest would be managed identity / service principal, where you create an account in your Azure AD and assign it to your application.
More info:
https://learn.microsoft.com/en-us/azure/active-directory/managed-identities-azure-resources/overview
Upvotes: 1