-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
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
Create FirewallRule
entity class
#70
Comments
@ndowmon I'd like to clarify goals and non goals:
Those do seem like they could be a good fit for 2 above. What would the J1QL look like, do you think @ndowmon, to accomplish 3 (assuming that is a goal)? |
I want to bump this one again. Lots of entities in Azure support host-based firewall rules, and a lot of queries of security importance rely on being able to ID these firewall rules. |
Historically, Firewall Rules have been created as edges between Firewalls and "The Internet". Properties such as
Allow/Deny
,startIp/endIp
,protocol
, etc. have been properties on these edges, and to query in J1QL, one must build a query likeFIND Firewall THAT (ALLOWS|DENIES) as firewallRule * return firewallRule.*
.Firewall rules aren't always related to Firewalls, though, as is the case with Azure SQL Servers (who have firewall rules with fewer properties, omitting
Allows/Denies
,Protocol
, and other typical properties). I think it would be best to create aFirewallRule
entity class.The text was updated successfully, but these errors were encountered: