turbot/zoom_compliance
Loading controls...

Control: 1.1.4.17 Ensure request permission to unmute is set to enabled (Manual)

Description

Select this option in the scheduler to request permission to unmute meeting participants and webinar panelists. Permissions, once given, will apply in all meetings scheduled by the same person.

Usage

Run the control in your terminal:

powerpipe control run zoom_compliance.control.cis_v100_1_1_4_17

Snapshot and share results via Turbot Pipes:

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

Steampipe Tables

SQL

select
account_id as resource,
case
when (
in_meeting -> 'request_permission_to_unmute_participants'
) :: bool then 'ok'
else 'alarm'
end as status,
'Request permission to unmute is ' || case
when (
in_meeting -> 'request_permission_to_unmute_participants'
) :: bool then 'enabled'
else 'disabled'
end || '.' as reason
from
zoom_account_settings

Tags