turbot/zoom_compliance
Loading controls...

Control: 1.1.3.9 Ensure auto saving chats is set to enabled (Manual)

Description

Automatically save all in-meeting chats so that hosts do not need to manually save the text of the chat after the meeting starts.

Usage

Run the control in your terminal:

powerpipe control run zoom_compliance.control.cis_v100_1_1_3_9

Snapshot and share results via Turbot Pipes:

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

Steampipe Tables

SQL

select
-- Required Columns
account_id as resource,
case
when (in_meeting -> 'auto_saving_chat') :: bool then 'ok'
else 'alarm'
end as status,
'Auto saving chats is ' || case
when (in_meeting -> 'auto_saving_chat') :: bool then 'enabled'
else 'disabled'
end || '.' as reason
from
zoom_account_settings

Tags