Control: Ensure Private Google Access is enabled for all subnetworks in VPC
Usage
Run the control in your terminal:
powerpipe control run terraform_gcp_compliance.control.compute_subnetwork_private_ip_google_access
Snapshot and share results via Turbot Pipes:
powerpipe loginpowerpipe control run terraform_gcp_compliance.control.compute_subnetwork_private_ip_google_access --share
SQL
This control uses a named query:
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_linefrom terraform_resourcewhere type = 'google_compute_subnetwork';