Update ACL -> firewall rule translation to handle new toggles#1994
Merged
Update ACL -> firewall rule translation to handle new toggles#1994
Conversation
moubctez
reviewed
Feb 5, 2026
| let has_ipv6_destination = | ||
| !dest_addrs_v6.is_empty() || (location_has_ipv6_addresses && any_destination); | ||
|
|
||
| let comment = format!("ACL {} - {}", rule_id, rule_name); |
Contributor
There was a problem hiding this comment.
Suggested change
| let comment = format!("ACL {} - {}", rule_id, rule_name); | |
| let comment = format!("ACL {rule_id} - {rule_name}"); |
moubctez
reviewed
Feb 5, 2026
| deny_rules.push(ipv6_rules.1); | ||
| } | ||
| let comment = format!( | ||
| "ACL {} - {}, ALIAS {} - {}", |
Contributor
There was a problem hiding this comment.
Suggested change
| "ACL {} - {}, ALIAS {} - {}", | |
| "ACL {rule_id} - {rule_name}, ALIAS {} - {}", |
moubctez
approved these changes
Feb 6, 2026
filipslezaklab
approved these changes
Feb 6, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Update the firewall rule generator logic to handle new toggles added for more explicitly expressing rule intent.
This also includes updates to API and webapp to handle new fields and align with the updated app design.
Closes #1923 and #1958