turbot/zoom_compliance
Loading controls...

Control: 1.1.4.7 Ensure closed captioning is set to disabled (Manual)

Description

Allow host to type closed captions or assign a participant/third party device to add closed captions.

Usage

Run the control in your terminal:

powerpipe control run zoom_compliance.control.cis_v100_1_1_4_7

Snapshot and share results via Turbot Pipes:

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

Steampipe Tables

SQL

select
account_id as resource,
case
when (in_meeting -> 'closed_caption') :: bool then 'alarm'
else 'ok'
end as status,
'Closed captioning is ' || case
when (in_meeting -> 'closed_caption') :: bool then 'enabled'
else 'disabled'
end || '.' as reason
from
zoom_account_settings

Tags