turbot/zoom_compliance
Loading controls...

Control: 1.1.3.2.1 Ensure sound notification when someone joins or leaves is set to enabled (Manual)

Description

Enable "Play sound when participants join or leave". This can also be controlled from host client end if required to be changed.

Usage

Run the control in your terminal:

powerpipe control run zoom_compliance.control.cis_v100_1_1_3_2_1

Snapshot and share results via Turbot Pipes:

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

Steampipe Tables

SQL

select
-- Required Columns
account_id as resource,
case
when in_meeting ->> 'entry_exit_chime' = 'none' then 'alarm'
else 'ok'
end as status,
'Play sound when participants join or leave is ' || (in_meeting ->> 'entry_exit_chime') || '.' as reason
from
zoom_account_settings

Tags