vijay
vijay

Reputation: 791

How to use two various authentication in single Azure Function App?

I have two http triggered functions in my Azure Function App project ,need to use Function and Admin level authentication for this.

I Know about below two key's and its uses.

HostKey -- Use for Function App all the functions

Function Key -- Use for specific one function of Function App project

Query :

Host key of all the functions of Azure Function App will be same ?, because every functions has own Function key and Host key settings in portal.

but, we can use common host key for all the functions of azure function app ,then why maintaining host key individually in function integrate settings ?

Upvotes: 0

Views: 176

Answers (1)

4c74356b41
4c74356b41

Reputation: 72151

If you press the Click to show to display the value you will notice that all the host keys values are identical between functions under the same function app. so its just a weird (not even weird) ui decision they had to make

Upvotes: 1

Related Questions