turbot/zoom_compliance
Loading controls...

Control: 1.1.3.4.1 Ensure screen sharing is set to enabled (Manual)

Description

Allow host and participants to share their screen or content during meetings. Enable this option to ensure further options are customizable to control who can share screen or desktop audio.

Usage

Run the control in your terminal:

powerpipe control run zoom_compliance.control.cis_v100_1_1_3_4_1

Snapshot and share results via Turbot Pipes:

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

Steampipe Tables

SQL

select
-- Required Columns
account_id as resource,
case
when (in_meeting -> 'screen_sharing') :: bool then 'ok'
else 'alarm'
end as status,
'Screen sharing is ' || case
when (in_meeting -> 'screen_sharing') :: bool then 'enabled'
else 'disabled'
end || '.' as reason
from
zoom_account_settings

Tags