I have a Python Azure Function that is integrated in a subnet in a virtual network. Additionally there is a network security group associated to the subnet that controls inbound and outbound traffic to / from the subnet.
The requirement is to restrict traffic as much as possible what requires me to set rules that restrict the ports and destination addresses (for outbound traffic).
Network Security Groups need IP(s/ranges) - urls (as discussed here: what url should I authorize to use pip behind a firewall?) can't be specified.
Which ports and IP(s/ranges) are used by pip?
Thanks