turbot/zoom_compliance

GitHub
Loading controls...

Control: 1.1.3.12 Ensure polling is set to enabled (Manual)

Description

Add 'Polls' to the meeting controls. This allows the host to survey the attendees. Polls also enables the host to validate if participants are active.

Usage

Run the control in your terminal:

steampipe check zoom_compliance.control.cis_v100_1_1_3_12

Snapshot and share results via Steampipe Cloud:

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

Plugins & Tables

SQL

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

Tags