turbot/zoom_compliance
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:

powerpipe control run zoom_compliance.control.cis_v100_1_1_4_12

Snapshot and share results via Turbot Pipes:

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

Steampipe 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