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_17Snapshot and share results via Turbot Pipes:
powerpipe loginpowerpipe control run zoom_compliance.control.cis_v100_1_1_4_17 --shareSteampipe 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 reasonfrom  zoom_account_settings