turbot/zoom_compliance

GitHub
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:

steampipe check zoom_compliance.control.cis_v100_1_1_3_2_2

Snapshot and share results via Steampipe Cloud:

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

Plugins & 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