turbot/zoom_compliance
Loading controls...

Control: 1.1.1.4 Ensure require a passcode when scheduling new meetings is set to enabled (Manual)

Description

Require a passcode when scheduling new meetings must be set to enabled. A passcode will be generated when scheduling a meeting and participants require the passcode to join the meeting.

Usage

Run the control in your terminal:

powerpipe control run zoom_compliance.control.cis_v100_1_1_1_4

Snapshot and share results via Turbot Pipes:

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

Steampipe Tables

SQL

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

Tags