turbot/zoom_compliance
Loading controls...

Control: 1.1.4.13 Ensure use HTML format email for Outlook plugin is set to enabled (Manual)

Description

Use HTML formatting instead of plain text for meeting invitations scheduled with the Outlook plugin.

Usage

Run the control in your terminal:

powerpipe control run zoom_compliance.control.cis_v100_1_1_4_13

Snapshot and share results via Turbot Pipes:

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

Steampipe Tables

SQL

select
account_id as resource,
case
when (in_meeting -> 'use_html_format_email') :: bool then 'ok'
else 'alarm'
end as status,
'Use HTML format email for Outlook plugin is ' || case
when (in_meeting -> 'use_html_format_email') :: bool then 'enabled'
else 'disabled'
end || '.' as reason
from
zoom_account_settings

Tags