turbot/zoom_compliance
Loading controls...

Control: 1.1.1.2 Ensure waiting room is set to enabled (Manual)

Description

When participants join a meeting, place them in a waiting room and require the host to admit them individually. Enabling the waiting room automatically disables the setting for allowing participants to join before host.

Usage

Run the control in your terminal:

powerpipe control run zoom_compliance.control.cis_v100_1_1_1_2

Snapshot and share results via Turbot Pipes:

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

Steampipe Tables

SQL

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

Tags