turbot/zoom_compliance
Loading controls...

Control: 1.1.1.8 Ensure embed password in meeting link for one-click join is set to enabled (Manual)

Description

Meeting passcode will be encrypted and included in the invite link to allow participants to join with just one click without having to enter the passcode.

Usage

Run the control in your terminal:

powerpipe control run zoom_compliance.control.cis_v100_1_1_1_8

Snapshot and share results via Turbot Pipes:

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

Steampipe Tables

SQL

select
-- Required Columns
account_id as resource,
case
when (meeting_security -> 'embed_password_in_join_link') :: bool then 'ok'
else 'alarm'
end as status,
'Embed password in meeting link is ' || case
when (meeting_security -> 'embed_password_in_join_link') :: bool then 'enabled'
else 'disabled'
end || '.' as reason
from
zoom_account_settings

Tags