turbot/terraform_aws_compliance

Query: vpc_network_acl_unused

Usage

powerpipe query terraform_aws_compliance.query.vpc_network_acl_unused

Steampipe Tables

SQL

select
address as resource,
case
when (attributes_std -> 'subnet_ids') is null then 'alarm'
else 'ok'
end status,
split_part(address, '.', 2) || case
when (attributes_std -> 'subnet_ids') is null then ' not associated with subnets'
else ' associated with ' || (jsonb_array_length(attributes_std -> 'subnet_ids')) || ' subnet(s)'
end || '.' as reason,
path || ':' || start_line
from
terraform_resource
where
type = 'aws_network_acl';

Controls

The query is being used by the following controls: