Hi Mr K
Welcome to Microsoft Q&A forum.
You can try some of the below steps:
Use Azure CLI or PowerShell
update the rule using CLI:
Example: Update an existing Firewall Policy rule collection
az network firewall policy rule-collection-group update \
--policy-name <FirewallPolicyName> \
--resource-group <ResourceGroupName> \
--name <RuleCollectionGroupName> \
--rule-collection <RuleCollectionName> \
--action Allow \
--priority 100
For PowerShell:
Update-AzFirewallPolicyRuleCollectionGroup `
-Name "<RuleCollectionGroupName>" `
-PolicyName "<FirewallPolicyName>" `
-ResourceGroupName "<ResourceGroupName>"
Switch to Classic Editor
- If you’re using the new preview UI, switch back to the classic editor for Firewall Policy rules. This often bypasses the bug.
You can use Azure Resource Manager templates or REST API to modify the rule until the.
Hope, you find this comment helpful, if yes, please “up-vote” for the information provided , this can be beneficial to community members.
Kindly let us know if you have any additional questions.
Thanks