turbot/terraform_aws_compliance

Query: docdb_cluster_backup_retention_period_7

Usage

powerpipe query terraform_aws_compliance.query.docdb_cluster_backup_retention_period_7

Steampipe Tables

SQL

select
address as resource,
case
when (attributes_std -> 'backup_retention_period') is null then 'alarm'
when ((attributes_std ->> 'backup_retention_period'))::int >= 7 then 'ok'
else 'alarm'
end as status,
split_part(address, '.', 2) || case
when (attributes_std -> 'backup_retention_period') is null then ' backup retention not set'
else ' backup retention set to ' || (attributes_std ->> 'backup_retention_period')
end || '.' as reason
, path || ':' || start_line
from
terraform_resource
where
type = 'aws_docdb_cluster';

Controls

The query is being used by the following controls: