turbot/zoom_compliance
Loading controls...

Control: 1.1.1.3 Ensure waiting room options is set to everyone (Manual)

Description

Click on "Edit Options" to choose who should go in the waiting room? A) Everyone, B) Users not in your account, C) Users who are not in your account and not part of the allowed domains.

Usage

Run the control in your terminal:

powerpipe control run zoom_compliance.control.cis_v100_1_1_1_3

Snapshot and share results via Turbot Pipes:

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

Steampipe Tables

SQL

select
-- Required Columns
account_id as resource,
case
when (
meeting_security -> 'waiting_room_settings' -> 'participants_to_place_in_waiting_room'
) :: int = 0 then 'ok'
else 'alarm'
end as status,
'Waiting room is enabled for ' || case
(
meeting_security -> 'waiting_room_settings' -> 'participants_to_place_in_waiting_room'
) :: int
when 1 then 'Users not in your account'
when 2 then 'Users who are not in your account and not part of the allowed domains'
else 'Everyone' -- usually 0
end || '.' as reason
from
zoom_account_settings

Tags