turbot/zoom_compliance

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

steampipe check zoom_compliance.control.cis_v100_1_1_3_4_1

Snapshot and share results via Steampipe Cloud:

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

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