turbot/zoom_compliance

GitHub
Loading controls...

Control: 1.2.2.3 Ensure record gallery view with shared screen is set to enabled (Manual)

Description

Record gallery view with shared screen.

Usage

Run the control in your terminal:

steampipe check zoom_compliance.control.cis_v100_1_2_2_3

Snapshot and share results via Steampipe Cloud:

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

Plugins & Tables

SQL

select
account_id as resource,
case
when (recording -> 'record_gallery_view') :: bool then 'ok'
else 'alarm'
end as status,
'Record gallery view with shared screen is ' || case
when (recording -> 'record_gallery_view') :: bool then 'enabled'
else 'disabled'
end || '.' as reason
from
zoom_account_settings

Tags