turbot/zoom_compliance
Loading controls...

Control: 1.1.4.11 Ensure auto-answer group in chat is set to disabled (Manual)

Description

Enable users to see and add contacts to 'auto-answer group' in the contact list on chat. Any call from members of this group will be automatically answered.

Usage

Run the control in your terminal:

powerpipe control run zoom_compliance.control.cis_v100_1_1_4_11

Snapshot and share results via Turbot Pipes:

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

Steampipe Tables

SQL

select
account_id as resource,
case
when (in_meeting -> 'auto_answer') :: bool then 'alarm'
else 'ok'
end as status,
'Auto-answer group in chat is ' || case
when (in_meeting -> 'auto_answer') :: bool then 'enabled'
else 'disabled'
end || '.' as reason
from
zoom_account_settings

Tags