turbot/zoom_compliance

GitHub
Loading controls...

Control: 1.1.1.10 Ensure require password for participants joining by phone is set to enabled (Manual)

Description

A numeric passcode will be required for participants joining by phone if your meeting has a passcode. For meeting with an alphanumeric passcode, a numeric version will be generated.

Usage

Run the control in your terminal:

steampipe check zoom_compliance.control.cis_v100_1_1_1_10

Snapshot and share results via Steampipe Cloud:

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

Plugins & Tables

SQL

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

Tags