turbot/zoom_compliance
Loading controls...

Control: 1.1.3.2.2 Ensure play sound for "Host and co-host only" is set to enabled (Manual)

Description

Change from "Everyone" option under [Play sound for] to "Host and co-hosts only".

Usage

Run the control in your terminal:

powerpipe control run zoom_compliance.control.cis_v100_1_1_3_2_2

Snapshot and share results via Turbot Pipes:

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

Steampipe Tables

SQL

select
-- Required Columns
account_id as resource,
case
when in_meeting ->> 'entry_exit_chime' = 'host' then 'ok'
else 'alarm'
end as status,
'Play sound for "Host and co-host only is ' || (in_meeting ->> 'entry_exit_chime') || '.' as reason
from
zoom_account_settings

Tags