Forum Discussion
AlexanPagonis
Oct 06, 2022Copper Contributor
OTP Service on Azure Functions
Hi all, I am building an OTP Service using an Azure Functions backend. It'll be 2 APIs, one to create an OTP and store it in an azure storage / cosmos DB, which will call an outside API to s...
MassimoBonanni
Oct 14, 2022Learn Expert
Hi,
you can use "access restriction" in the Function App. Access restriction is a network feature of the function app that allow you to create rule to control who can access to the endpoint of the functions inside the function app.
You can find more info on these links:
https://learn.microsoft.com/en-us/azure/azure-functions/security-concepts?tabs=v4
https://learn.microsoft.com/en-us/azure/app-service/app-service-ip-restrictions
You can also find an architecture on how you can create a multitier application with app services (and similarly with function app) on this link:
https://learn.microsoft.com/en-us/azure/architecture/example-scenario/web/multi-tier-app-service-private-endpoint
you can use "access restriction" in the Function App. Access restriction is a network feature of the function app that allow you to create rule to control who can access to the endpoint of the functions inside the function app.
You can find more info on these links:
https://learn.microsoft.com/en-us/azure/azure-functions/security-concepts?tabs=v4
https://learn.microsoft.com/en-us/azure/app-service/app-service-ip-restrictions
You can also find an architecture on how you can create a multitier application with app services (and similarly with function app) on this link:
https://learn.microsoft.com/en-us/azure/architecture/example-scenario/web/multi-tier-app-service-private-endpoint