turbot/terraform_aws_compliance

Query: iam_account_password_policy_reuse_24

Usage

powerpipe query terraform_aws_compliance.query.iam_account_password_policy_reuse_24

Steampipe Tables

SQL

select
address as resource,
case
when (attributes_std -> 'password_reuse_prevention') is null then 'alarm'
when (attributes_std -> 'password_reuse_prevention') :: integer >= 24 then 'ok'
else 'alarm'
end as status,
split_part(address, '.', 2) || case
when (attributes_std -> 'password_reuse_prevention') is null then ' password reuse prevention not set'
when (attributes_std -> 'password_reuse_prevention') :: integer >= 24 then ' password reuse prevention set to ' || (attributes_std ->> 'password_reuse_prevention') || ' days'
else ' password reuse prevention set to ' || (attributes_std ->> 'password_reuse_prevention') || ' days'
end || '.' as reason,
path || ':' || start_line
from
terraform_resource
where
type = 'aws_iam_account_password_policy';

Controls

The query is being used by the following controls: