turbot/steampipe-mod-alicloud-compliance

Control: 1.8 Ensure RAM password policy requires at least one lowercase letter

Description

RAM password policies can be used to ensure password complexity. It is recommended that the password policy require at least one lowercase letter.

Remediation

Perform the following to set the password policy:

From Console

  1. Logon to RAM console.
  2. Choose Identities > Settings.
  3. In the Password Strength Settings section, click Edit Password Rule.
  4. In the Required Elements in Password section, select Lowercase Letter.
  5. Click OK.

From Command Line

aliyun ram SetPasswordPolicy --RequireLowercaseCharacters true

Usage

Run the control in your terminal:

powerpipe control run alicloud_compliance.control.cis_v100_1_8

Snapshot and share results via Turbot Pipes:

powerpipe login
powerpipe control run alicloud_compliance.control.cis_v100_1_8 --share

SQL

This control uses a named query:

select
'acs:ram::' || a.account_id as resource,
case
when require_lowercase_characters then 'ok'
else 'alarm'
end as status,
case
when minimum_password_length is null then 'No password policy set.'
when require_lowercase_characters then 'Lowercase character required.'
else 'Lowercase character not required.'
end as reason
, a.account_id as account_id
from
alicloud_account as a
left join alicloud_ram_password_policy as pol on a.account_id = pol.account_id;

Tags