Reputation: 18770
What's the closest equivalent in Azure to an AWS Lambda, that is only accessible with a given IAM role?
It looks like Azure Functions are fairly wide open by default (like a Lambda + API gateway as a single resource), and I'm wondering how to best replicate the kind of behavior where a function is only available to a service principal or a user already authenticated with Azure.
Upvotes: 0
Views: 30
Reputation: 3804
There are several things you can do to secure Functions. You can enable app service authorization and authentication, deploy them in App Service Environments, and restrict with Function keys.
Upvotes: 1