Open e-gineer opened 2 years ago
'This issue is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 30 days.'
'This issue was closed because it has been stalled for 90 days with no activity.'
'This issue is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 30 days.'
Many queries in this mod use distinct to prevent duplicates. For example:
https://github.com/turbot/steampipe-mod-aws-compliance/blob/56d5f70aae65698cb8d1b73f41bb238c8d38e879/query/vpc/vpc_flow_logs_enabled.sql#L1-L3
Distinct checks all elements in the tuple (row), as opposed to ensuring the specific
arn
orname
(common ones) is actually distinct.So, queries like this:
should actually be:
A an example to see the difference, please try these two queries: