turbot/steampipe-mod-gcp-compliance

Control: Compute Target HTTPS proxy QUIC protocol should be enabled

Description

This control ensures that Compute Target HTTPS proxy QUIC protocol is enabled. Activating the QUIC protocol in load balancer target HTTPS proxies offers the benefit of quicker connection establishment.

Usage

Run the control in your terminal:

powerpipe control run gcp_compliance.control.compute_target_https_proxy_quic_protocol_enabled

Snapshot and share results via Turbot Pipes:

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

SQL

This control uses a named query:

select
self_link resource,
case
when quic_override = 'ENABLE' then 'ok'
else 'alarm'
end as status,
case
when quic_override = 'ENABLE' then title || ' QUIC override protocol enabled.'
else title || ' QUIC override protocol disabled.'
end as reason
, location as location, project as project
from
gcp_compute_target_https_proxy;

Tags