Azure Firewall unable to update existing rules.

Mr K 25 Reputation points
2025-10-30T10:44:35.86+00:00

The save button when modifying a existing Azure Firewall Policy rule is not working on Azure portal, I've tried different browsers. It's throwing a error in the browser developer console. How to fix this?

User's image

Azure Firewall
Azure Firewall
An Azure network security service that is used to protect Azure Virtual Network resources.
{count} votes

2 answers

Sort by: Most helpful
  1. Priya ranjan Jena 2,295 Reputation points Microsoft External Staff Moderator
    2025-10-30T14:17:48.8166667+00:00

    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

    0 comments No comments

  2. Mr K 25 Reputation points
    2025-11-14T03:55:19.2433333+00:00

    The bug has now been fixed by Microsoft.

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.