turbot/terraform_gcp_compliance

Query: compute_subnetwork_private_ip_google_access

Usage

powerpipe query terraform_gcp_compliance.query.compute_subnetwork_private_ip_google_access

Steampipe Tables

SQL

select
address as resource,
case
when (attributes_std ->> 'private_ip_google_access') :: boolean then 'ok'
else 'alarm'
end as status,
split_part(address, '.', 2) || case
when (attributes_std -> 'private_ip_google_access') is null then ' ''private_ip_google_access'' is not defined'
when (attributes_std ->> 'private_ip_google_access') :: boolean then ' private Google Access is enabled'
else ' private Google Access is disabled'
end || '.' reason,
path || ':' || start_line
from
terraform_resource
where
type = 'google_compute_subnetwork';

Controls

The query is being used by the following controls: