Nikolay Kosarev
Nikolay Kosarev

Reputation: 1

Restrict azure function to outgoing requests

I need restrict my Functions in azure functionApp so they could't perform any outgoing requests(like get forecast from website, get some data from Blob storage) so it will be fully isolated. How I can do it?

Upvotes: 0

Views: 291

Answers (1)

Vova Bilyachat
Vova Bilyachat

Reputation: 19474

For that you will need to use premium plan, add your function into network then in function app add application property WEBSITE_VNET_ROUTE_ALL=1 which will force to send outbound traffic via network where you can configure all security rules you want

More info

Upvotes: 1

Related Questions