turbot/zoom_compliance

GitHub
Loading controls...

Control: 1.1.4.12 Ensure only show default email when sending email invites is set to enabled (Manual)

Description

Allow users to invite participants by email only by using the default email program selected on their computer.

Usage

Run the control in your terminal:

steampipe check zoom_compliance.control.cis_v100_1_1_4_12

Snapshot and share results via Steampipe Cloud:

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

Plugins & Tables

SQL

select
account_id as resource,
case
when (in_meeting -> 'sending_default_email_invites') :: bool then 'ok'
else 'alarm'
end as status,
'Only show default email when sending email invites is ' || case
when (in_meeting -> 'sending_default_email_invites') :: bool then 'enabled'
else 'disabled'
end || '.' as reason
from
zoom_account_settings

Tags