Control: 1.1.2.3 Ensure participants video is set to disabled (Manual)
Description
Start meetings with Participants video on should be set to disabled and locked off.
Usage
Run the control in your terminal:
powerpipe control run zoom_compliance.control.cis_v100_1_1_2_3Snapshot and share results via Turbot Pipes:
powerpipe loginpowerpipe control run zoom_compliance.control.cis_v100_1_1_2_3 --shareSteampipe Tables
SQL
select  -- Required Columns  account_id as resource,  case    when (schedule_meeting -> 'participants_video')::bool then 'alarm'    else 'ok'  end as status,  'Participants Video On is ' || case when (schedule_meeting -> 'participants_video')::bool then 'enabled' else 'disabled' end || '.' as reasonfrom  zoom_account_settings
union
select  -- Required Columns  account_id as resource,  case    when (schedule_meeting -> 'participants_video')::bool then 'ok'    else 'alarm'  end as status,  'Participants Video On setting is' || case when not (schedule_meeting -> 'participants_video')::bool then ' not' else '' end || ' locked.' as reasonfrom  zoom_account_lock_settings