turbot/zoom_compliance

GitHub
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:

steampipe check zoom_compliance.control.cis_v100_1_1_1_8

Snapshot and share results via Steampipe Cloud:

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

Plugins & 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