Skip to content
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

vpc_security_group_associated.sql added with distinct to filter security groups and nist_csf_pr_ds_3 now uses new query. Closes#282 #283

Merged
merged 2 commits into from
Sep 23, 2021

Conversation

rajlearner17
Copy link
Contributor

…ity groups and nist_csf_pr_ds_3 now uses new query. Closes#282
Comment on lines 25 to 26
aws_vpc_security_group s
left join associated_sg a on s.group_id = a.secgrp_id;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
aws_vpc_security_group s
left join associated_sg a on s.group_id = a.secgrp_id;
aws_vpc_security_group as s
left join associated_sg as a on s.group_id = a.secgrp_id;

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Query vpc_security_group_associated.sql should address distinct clause to filter vpc security groups.
2 participants