turbot/zoom_compliance

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

steampipe check zoom_compliance.control.cis_v100_1_1_4_13

Snapshot and share results via Steampipe Cloud:

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

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