turbot/steampipe-mod-terraform-oci-compliance

Control: IAM password policy should contain at least one special character

Description

This control checks whether the IAM password policy contains at least one special character.

Usage

Run the control in your terminal:

powerpipe control run terraform_oci_compliance.control.identity_authentication_password_policy_contains_special_characters

Snapshot and share results via Turbot Pipes:

powerpipe login
powerpipe control run terraform_oci_compliance.control.identity_authentication_password_policy_contains_special_characters --share

SQL

This control uses a named query:

select
address as resource,
case
when (attributes_std -> 'password_policy' ->> 'is_special_characters_required')::boolean then 'ok'
else 'alarm'
end as status,
split_part(address, '.', 2) || case
when (attributes_std -> 'password_policy' ->> 'is_special_characters_required')::boolean then ' contains special characters'
else ' does not contain special characters'
end || '.' reason
, path || ':' || start_line
from
terraform_resource
where
type = 'oci_identity_authentication_policy';

Tags