Hello,
As you might know, the Azure IP's can be found here: https://www.microsoft.com/en-us/download/confirmation.aspx?id=56519.
To convert them to txt you can use the following in your script (jq needs to be installed):
cat ServiceTags_Public_*.json | \ jq -r '.values[].properties.addressPrefixes[]' | \ grep -Eo '([0-9]{1,3}\.){3}[0-9]{1,3}/[0-9]+' > azure_ips.txt
This way it might be easier to merge with the other IP ranges.
Hello,
As you might know, the Azure IP's can be found here: https://www.microsoft.com/en-us/download/confirmation.aspx?id=56519.
To convert them to txt you can use the following in your script (
jqneeds to be installed):This way it might be easier to merge with the other IP ranges.