turbot/terraform_gcp_compliance

Query: compute_subnetwork_private_ipv6_google_access

Usage

powerpipe query terraform_gcp_compliance.query.compute_subnetwork_private_ipv6_google_access

Steampipe Tables

SQL

select
address as resource,
case
when (attributes_std ->> 'private_ipv6_google_access') in (
'ENABLE_OUTBOUND_VM_ACCESS_TO_GOOGLE',
'ENABLE_BIDIRECTIONAL_ACCESS_TO_GOOGLE'
) then 'ok'
else 'alarm'
end as status,
split_part(address, '.', 2) || case
when (attributes_std ->> 'private_ipv6_google_access') in (
'ENABLE_OUTBOUND_VM_ACCESS_TO_GOOGLE',
'ENABLE_BIDIRECTIONAL_ACCESS_TO_GOOGLE'
) then ' private IPv6 Google Access is enabled'
else ' private IPv6 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: