Reputation: 1
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
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
Upvotes: 1