turbot/zoom_compliance
Loading controls...

Control: 1.1.2.12 Ensure mute participants upon entry is set to enabled (Manual)

Description

Automatically mute all participants when they join the meeting. The host controls whether participants can unmute themselves, through client end by enabling "Allow Participants to Unmute Themselves" under more options in participants list.

Usage

Run the control in your terminal:

powerpipe control run zoom_compliance.control.cis_v100_1_1_2_12

Snapshot and share results via Turbot Pipes:

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

Steampipe Tables

SQL

select
-- Required Columns
account_id as resource,
case
when (schedule_meeting -> 'mute_upon_entry') :: bool then 'ok'
else 'alarm'
end as status,
'Ensure mute participants upon entry is ' || case
when (schedule_meeting -> 'mute_upon_entry') :: bool then 'enabled'
else 'disabled'
end || '.' as reason
from
zoom_account_settings
union
select
-- Required Columns
account_id as resource,
case
when (schedule_meeting -> 'mute_upon_entry') :: bool then 'ok'
else 'alarm'
end as status,
'Ensure mute participants upon entry setting is' || case
when not (schedule_meeting -> 'mute_upon_entry') :: bool then ' not'
else ''
end || ' locked.' as reason
from
zoom_account_lock_settings

Tags