You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
This query will not properly report if a configuration recorder is enabled in a region, as it will always report alarm even if a configuration recorder is setup correctly in that region, if the region is not included in the aws.spc connection file.
Steampipe version (steampipe -v)
v0.5.0
Plugin version (steampipe plugin list)
aws v0.18.0
To reproduce
Create a configuration recorder in us-west-1 and configure it so:
recording_group -> 'IncludeGlobalResourceTypes' = 'true'
and recording_group -> 'AllSupported' = 'true'
and status ->> 'Recording' = 'true'
and status ->> 'LastStatus' = 'SUCCESS'
Do not include us-west-1 in the regions argument in aws.spc
Run the query
Expected behavior
The query should return ok instead of alarm
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered:
There is a way to get it working but in that case, we have to change the table design to get the details of the configuration recorder for each enabled region.
It will be a simple change to include the parent hydrate function listAwsRegions to get the details of every region
Describe the bug
This query will not properly report if a configuration recorder is enabled in a region, as it will always report alarm even if a configuration recorder is setup correctly in that region, if the region is not included in the
aws.spc
connection file.Steampipe version (
steampipe -v
)v0.5.0
Plugin version (
steampipe plugin list
)aws v0.18.0
To reproduce
us-west-1
in theregions
argument inaws.spc
Expected behavior
The query should return
ok
instead ofalarm
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: