turbot/zoom_compliance

GitHub
Loading controls...

Control: 1.1.4.2.1 Ensure breakout room is set to enabled (Manual)

Description

Allow host to split meeting participants into separate, smaller rooms. This is beneficial, when participants need to be moved to separate virtual rooms.

Usage

Run the control in your terminal:

steampipe check zoom_compliance.control.cis_v100_1_1_4_2_1

Snapshot and share results via Steampipe Cloud:

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

Plugins & Tables

SQL

select
account_id as resource,
case
when (in_meeting -> 'breakout_room') :: bool then 'ok'
else 'alarm'
end as status,
'Breakout room is ' || case
when (in_meeting -> 'breakout_room') :: bool then 'enabled'
else 'disabled'
end || '.' as reason
from
zoom_account_settings

Tags