turbot/terraform_gcp_compliance

Query: compute_instance_serial_port_connection_disabled

Usage

powerpipe query terraform_gcp_compliance.query.compute_instance_serial_port_connection_disabled

Steampipe Tables

SQL

select
address as resource,
case
when (attributes_std -> 'metadata') is null then 'alarm'
when (attributes_std -> 'metadata' -> 'serial-port-enable') is null then 'alarm'
when (
attributes_std -> 'metadata' ->> 'serial-port-enable'
) = 'true' then 'ok'
else 'alarm'
end status,
split_part(address, '.', 2) || case
when (attributes_std -> 'metadata') is null then ' ''metadata'' property is not defined'
when (attributes_std -> 'metadata' -> 'serial-port-enable') is null then ' ''serial-port-enable'' property is not defined'
when (
attributes_std -> 'metadata' ->> 'serial-port-enable'
) = 'true' then ' has serial port connections enabled'
else ' has serial port connections disabled'
end || '.' reason,
path || ':' || start_line
from
terraform_resource
where
type = 'google_compute_instance';

Controls

The query is being used by the following controls: