Reputation: 11
I'm preparing a script to change several aspects of an existing Azure Aplication Gateway. Previously, my team had disabled some of the rules on the WAF. My intention is to enhact them all again, thus disabling advanced configuration. I can't find the way to do this via Powershell.
Upvotes: 1
Views: 441
Reputation: 349
WAF rules are not about App GW, it's a separate feature in the Azure. So, you should use:
Get-AzApplicationGatewayFirewallPolicy | Set-AzApplicationGatewayFirewallPolicy
Also, as an example you can look here:
Upvotes: 1