turbot/zoom_compliance
Loading controls...

Control: 1.1.4.14 Ensure show a "Join from your browser" link is set to enabled (Manual)

Description

Allow participants to bypass the Zoom application download process, and join a meeting directly from their browser. This is a workaround for participants who are unable to download, install, or run applications. Note that the meeting experience from the browser is limited.

Usage

Run the control in your terminal:

powerpipe control run zoom_compliance.control.cis_v100_1_1_4_14

Snapshot and share results via Turbot Pipes:

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

Steampipe Tables

SQL

select
account_id as resource,
case
when (in_meeting -> 'show_a_join_from_your_browser_link') :: bool then 'ok'
else 'alarm'
end as status,
'Show a "Join from your browser" link is ' || case
when (in_meeting -> 'show_a_join_from_your_browser_link') :: bool then 'enabled'
else 'disabled'
end || '.' as reason
from
zoom_account_settings

Tags