turbot/zoom_compliance

GitHub
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:

steampipe check zoom_compliance.control.cis_v100_1_1_1_2

Snapshot and share results via Steampipe Cloud:

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

Plugins & 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