turbot/steampipe-mod-gcp-compliance

Control: Compute Target HTTPS proxy should use custom SSL policy

Description

This control ensures that Compute Target HTTPS proxy should use custom SSL policy.

Usage

Run the control in your terminal:

powerpipe control run gcp_compliance.control.compute_target_https_proxy_quic_protocol_no_default_ssl_policy

Snapshot and share results via Turbot Pipes:

powerpipe login
powerpipe control run gcp_compliance.control.compute_target_https_proxy_quic_protocol_no_default_ssl_policy --share

SQL

This control uses a named query:

select
self_link resource,
case
when ssl_policy = '' then 'alarm'
else 'ok'
end as status,
case
when ssl_policy = '' then title || ' using default SSL policy.'
else title || ' using custom SSL policy.'
end as reason
, location as location, project as project
from
gcp_compute_target_https_proxy;

Tags