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:
steampipe check zoom_compliance.control.cis_v100_1_1_2_12
Snapshot and share results via Steampipe Cloud:
steampipe loginsteampipe check --share zoom_compliance.control.cis_v100_1_1_2_12
Plugins & 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 reasonfrom zoom_account_settingsunionselect -- 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 reasonfrom zoom_account_lock_settings