turbot/zoom_compliance
Loading controls...

Control: 1.1.3.2.3 Ensure when someone joins by phone, ask to record their voice to use as the notification is set to enabled (Manual)

Description

Select "Ask to record their voice to use as the notification" option for "When someone joins by phone".

Usage

Run the control in your terminal:

powerpipe control run zoom_compliance.control.cis_v100_1_1_3_2_3

Snapshot and share results via Turbot Pipes:

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

Steampipe Tables

SQL

select
-- Required Columns
account_id as resource,
case
when (in_meeting -> 'record_play_own_voice') :: bool then 'ok'
else 'alarm'
end as status,
'Ask to record voice as notification is ' || case
when (in_meeting -> 'record_play_own_voice') :: bool then 'enabled'
else 'disabled'
end || '.' as reason
from
zoom_account_settings

Tags