Ben D
Ben D

Reputation: 811

What are the equivalent user accounts for IIS/ASP.NET in Azure

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

Answers (2)

Rahul Shukla
Rahul Shukla

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

Thiago Custodio
Thiago Custodio

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

Related Questions