DavidBL
DavidBL

Reputation: 121

User access/authorization to web app secured with azure AD

My company has an Azure Active Directory, and my web application hosted in App Service is currently using the built-in option AAD authentication mechanism (AppService -> Setting -> Authentication/Authorization -> Choose AAD as provider) to allow people from our AAD to login. This is very convenient as we do not need to change our application at all. However, I would like to know whether there is an option to decide who in our AAD can actually login to the application? We would like to limit certain users only to access our application.

Is this something configurable from Azure or need to be handled at application level?

Thanks.

Upvotes: 1

Views: 326

Answers (1)

juunas
juunas

Reputation: 58733

Yes, you can configure the app in AAD to only allow certain users.

Find the app from Azure Active Directory -> Enterprise applications. Go to its Properties and set User assignment required? to Yes. Now you can assign users from the Users & Groups tab.

Upvotes: 2

Related Questions