You must be logged in to view saved presets
The following rules are included:
let networkFirewalls = Resources.*[
Type == "AWS::NetworkFirewall::Firewall"
]
rule firewall_deletion_protection when %networkFirewalls !empty {
%networkFirewalls {
Properties {
DeleteProtection exists <<DeleteProtection is not configured (i.e. disabled).>>
when DeleteProtection exists {
DeleteProtection == true <<Delete Protection is disabled.>>
}
}
}
}
rule firewall_subnet_change_protection when %networkFirewalls !empty {
%networkFirewalls {
Properties {
SubnetChangeProtection exists <<SubnetChangeProtection is not configured (i.e. disabled).>>
when SubnetChangeProtection exists {
SubnetChangeProtection == true <<Subnet Change Protection is disabled.>>
}
}
}
}