turbot/zoom_compliance
Loading controls...

Control: 1.1.1.7 Ensure require a password for Personal Meeting ID (PMI) is set to enabled (Manual)

Description

Enable "Require a passcode for Personal Meeting ID (PMI)" to set a passcode for meetings that use the personal meeting ID (PMI) and then choose "All meetings using PMI".

Usage

Run the control in your terminal:

powerpipe control run zoom_compliance.control.cis_v100_1_1_1_7

Snapshot and share results via Turbot Pipes:

powerpipe login
powerpipe control run zoom_compliance.control.cis_v100_1_1_1_7 --share

Steampipe Tables

SQL

select
-- Required Columns
account_id as resource,
case
when (meeting_security -> 'pmi_password') :: bool then 'ok'
else 'alarm'
end as status,
'Meeting password is ' || case
when (meeting_security -> 'pmi_password') :: bool then 'enabled'
else 'disabled'
end || '.' as reason
from
zoom_account_settings

Tags