turbot/terraform_aws_compliance

Query: vpc_subnet_auto_assign_public_ip_disabled

Usage

powerpipe query terraform_aws_compliance.query.vpc_subnet_auto_assign_public_ip_disabled

Steampipe Tables

SQL

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

Controls

The query is being used by the following controls: