turbot/zoom_compliance

GitHub
Loading controls...

Control: 3.1.1.1.1 Ensure minimum password length is set to 9 characters or greater (Manual)

Description

Have a minimum password length of 9 characters or greater.

Usage

Run the control in your terminal:

steampipe check zoom_compliance.control.cis_v100_3_1_1_1_1

Snapshot and share results via Steampipe Cloud:

steampipe login
steampipe check --share zoom_compliance.control.cis_v100_3_1_1_1_1

Plugins & Tables

SQL

select
-- Required Columns
account_id as resource,
case
when (
security -> 'password_requirement' -> 'minimum_password_length'
) :: int >= 9 then 'ok'
else 'alarm'
end as status,
'Minimum password length set to ' || (
security -> 'password_requirement' ->> 'minimum_password_length'
) || '.' as reason
from
zoom_account_settings

Tags