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 loginsteampipe 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 reasonfrom zoom_account_settings