turbot/aws_compliance

Query: backup_recovery_point_manual_deletion_disabled

Usage

powerpipe query aws_compliance.query.backup_recovery_point_manual_deletion_disabled

Steampipe Tables

SQL

with recovery_point_manual_deletion_disabled as (
select
arn
from
aws_backup_vault,
jsonb_array_elements(policy -> 'Statement') as s
where
s ->> 'Effect' = 'Deny'
and s -> 'Action' @> '["backup:DeleteRecoveryPoint","backup:UpdateRecoveryPointLifecycle","backup:PutBackupVaultAccessPolicy"]'
and s ->> 'Resource' = '*'
group by
arn
)
select
v.arn as resource,
case
when d.arn is not null then 'ok'
else 'alarm'
end as status,
case
when d.arn is not null then v.title || ' recovery point manual deletion disabled.'
else v.title || ' recovery point manual deletion not disabled.'
end as reason,
v.region,
v.account_id
from
aws_backup_vault as v
left join recovery_point_manual_deletion_disabled as d on v.arn = d.arn;

Controls

The query is being used by the following controls: