-
Notifications
You must be signed in to change notification settings - Fork 23
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
🐛 Properly target the region filter. #3225
Conversation
CLA Assistant Lite bot All contributors have signed the CLA ✍️ ✅ |
I have read the Mondoo CLA Document and I hereby sign the CLA |
recheck |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you @montera82 for this contribution. I added a few comments to help with the implementation.
Co-authored-by: Christoph Hartmann <[email protected]>
Hi @chris-rock, thanks for your feedbacks. I implemented them, but doing a few tests shows that it quering with |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you @montera82 for this great improvement
case k == "ec2:region": | ||
d.Ec2DiscoveryFilters.Regions = append(d.Ec2DiscoveryFilters.Regions, v) | ||
case k == "all:region": | ||
case k == "all:region", k == "region": |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nice addition
@@ -125,18 +125,15 @@ func parseOptsToFilters(opts map[string]string) DiscoveryFilters { | |||
for k, v := range opts { | |||
switch { | |||
case strings.HasPrefix(k, "ec2:tag:"): | |||
d.Ec2DiscoveryFilters.Tags[strings.TrimPrefix("ec2:tag:", k)] = v | |||
d.Ec2DiscoveryFilters.Tags[strings.TrimPrefix(k, "ec2:tag:")] = v |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thank you for that fix
@@ -617,6 +617,9 @@ func (a *mqlAwsEc2) getInstances(conn *connection.AwsConnection) []*jobpool.Job | |||
if err != nil { | |||
return []*jobpool.Job{{Err: err}} | |||
} | |||
if len(conn.Filters.Ec2DiscoveryFilters.Regions) > 0 { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice addition!
@@ -112,20 +112,23 @@ func containsInterfaceSlice(sl []interface{}, s string) bool { | |||
} | |||
|
|||
func instanceMatchesFilters(instance *mqlAwsEc2Instance, filters connection.DiscoveryFilters) bool { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This method requires additional testing to ensure we cover all edge cases.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yup, more test is always nice, if i invest more time i would definately find some of those cases!
Introduction
This PR ensures we can properly filter by region.
Relates to Issue : mondoohq/cnspec#1047