turbot/zoom_compliance
Loading controls...

Control: 1.1.3.5.1 Ensure annotation is set to disabled (Manual)

Description

Allow host and participants to use annotation tools to add information to shared screens.

Usage

Run the control in your terminal:

powerpipe control run zoom_compliance.control.cis_v100_1_1_3_5_1

Snapshot and share results via Turbot Pipes:

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

Steampipe Tables

SQL

select
-- Required Columns
account_id as resource,
case
when (in_meeting -> 'annotation') :: bool then 'alarm'
else 'ok'
end as status,
'Annotation tools are ' || case
when (in_meeting -> 'annotation') :: bool then 'enabled'
else 'disabled'
end || '.' as reason
from
zoom_account_settings

Tags