turbot/zoom_compliance
Loading controls...

Control: 1.1.3.10 Ensure feedback to Zoom is set to enabled (Manual)

Description

Add a Feedback tab to the Windows Settings or Mac Preferences dialog, and also enable users to provide feedback to Zoom at the end of the meeting.

Usage

Run the control in your terminal:

powerpipe control run zoom_compliance.control.cis_v100_1_1_3_10

Snapshot and share results via Turbot Pipes:

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

Steampipe Tables

SQL

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

Tags