We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following policy does not exclude subnets that do not allow NSGs to be attached to it.
ES-Deny-Subnets-Without-NSG
So far, I know GatewaySubnet, AzureFirewallSubnet, and AzureFirewallManagementSubnet do not support NSG. There may be others...
Proposing the policy rule's "if" condition look like this:
"if": { "allOf": [ { "field": "type", "equals": "Microsoft.Network/virtualNetworks/subnets" }, { "field": "name", "notEquals": "AzureFirewallSubnet" }, { "field": "name", "notEquals": "AzureFirewallManagementSubnet" }, { "field": "name", "notEquals": "GatewaySubnet" }, { "field": "Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.id", "exists": "false" } ] },
The text was updated successfully, but these errors were encountered:
krowlandson
Successfully merging a pull request may close this issue.
The following policy does not exclude subnets that do not allow NSGs to be attached to it.
ES-Deny-Subnets-Without-NSG
So far, I know GatewaySubnet, AzureFirewallSubnet, and AzureFirewallManagementSubnet do not support NSG. There may be others...
Proposing the policy rule's "if" condition look like this:
The text was updated successfully, but these errors were encountered: