turbot/zoom_compliance

GitHub
Loading controls...

Control: 1.1.3.13 Ensure always show meeting control toolbar is set to enabled (Manual)

Description

Always show meeting controls during a meeting. This helps in responding to situations where host / co-host need to quickly navigate controls to handle a situation.

Usage

Run the control in your terminal:

steampipe check zoom_compliance.control.cis_v100_1_1_3_13

Snapshot and share results via Steampipe Cloud:

steampipe login
steampipe check --share zoom_compliance.control.cis_v100_1_1_3_13

Plugins & Tables

SQL

select
-- Required Columns
account_id as resource,
case
when (in_meeting -> 'show_meeting_control_toolbar') :: bool then 'ok'
else 'alarm'
end as status,
'Always show meeting control toolbar is ' || case
when (in_meeting -> 'show_meeting_control_toolbar') :: bool then 'enabled'
else 'disabled'
end || '.' as reason
from
zoom_account_settings

Tags