1

I have an Azure Function which authenticates with a B2C Active Directory. Now I want to have another function which does not require authentication and I placed it in the same Functions App. But as Functions are configured per Functions App it requires authentication as well. Can I configure the authentication on a per function basis or do I need to create a separate Functions App for anonymous functions?

1
  • You need to create a separate Functions App for anonymous functions. Commented Mar 26, 2020 at 0:17

1 Answer 1

1

Yes, you need to create a new function app. Because B2C is aimed at the app level, not the function / trigger level. If you want a function with a different authentication strategy, the way is to put it in a new Azure Function App.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.