turbot/zoom_compliance
Loading controls...

Control: 1.1.2.2 Ensure host video is set to disabled (Manual)

Description

Start meetings with host video on should be set to disabled.

Usage

Run the control in your terminal:

powerpipe control run zoom_compliance.control.cis_v100_1_1_2_2

Snapshot and share results via Turbot Pipes:

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

Steampipe Tables

SQL

select
-- Required Columns
account_id as resource,
case
when (schedule_meeting -> 'host_video') :: bool then 'alarm'
else 'ok'
end as status,
'Host Video On is ' || case
when (schedule_meeting -> 'participants_video') :: bool then 'enabled'
else 'disabled'
end || '.' as reason
from
zoom_account_settings

Tags