Hi @Mahdi Azarboon ,
it seems only allowed CIDRs are working in the ipRules. The format looks like this:
"ipRules": [
{
"value": "49.16.71.33",
"action": "Allow"
},
{
"value": "49.16.71.89",
"action": "Allow"
}
],
"defaultAction": "Deny"
},
This defines 2 CIDRs are allowed and if the IP isn't in the list the access is denied.
This example with []
allows public network access from any IP:
"ipRules": [],
"defaultAction": "Allow"
And this one blocks all public network access because ipRules
is empty (ipRules": []
) and "defaultAction": "Deny"
:
"ipRules": [],
"defaultAction": "Deny"
(If the reply was helpful please don't forget to upvote and/or accept as answer, thank you)
Regards
Andreas Baumgarten