turbot/zoom_compliance
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:

powerpipe control run zoom_compliance.control.cis_v100_1_1_4_2_1

Snapshot and share results via Turbot Pipes:

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

Steampipe 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