turbot/aws_compliance

Query: fsx_file_system_protected_by_backup_plan

Usage

powerpipe query aws_compliance.query.fsx_file_system_protected_by_backup_plan

SQL

with backup_protected_fsx_file_system as (
select
resource_arn as arn
from
aws_backup_protected_resource as b
where
resource_type = 'FSx'
)
select
f.arn as resource,
case
when b.arn is not null then 'ok'
else 'alarm'
end as status,
case
when b.arn is not null then f.title || ' is protected by backup plan.'
else f.title || ' is not protected by backup plan.'
end as reason,
f.region,
f.account_id
from
aws_fsx_file_system as f
left join backup_protected_fsx_file_system as b on f.arn = b.arn;

Controls

The query is being used by the following controls: