turbot/terraform_gcp_compliance

Query: compute_instance_with_no_public_ip_addresses

Usage

powerpipe query terraform_gcp_compliance.query.compute_instance_with_no_public_ip_addresses

Steampipe Tables

SQL

select
address as resource,
case
when (
attributes_std -> 'network_interface' -> 'access_config'
) is null
or (
attributes_std -> 'network_interface' ->> 'access_config'
) like '{}' then 'ok'
else 'alarm'
end status,
split_part(address, '.', 2) || case
when (
attributes_std -> 'network_interface' -> 'access_config'
) is null
or (
attributes_std -> 'network_interface' ->> 'access_config'
) like '{}' then ' not associated with public IP addresses'
else ' associated with public IP addresses'
end || '.' reason,
path || ':' || start_line
from
terraform_resource
where
type = 'google_compute_instance';

Controls

The query is being used by the following controls: