turbot/terraform_azure_compliance

Query: cosmosdb_account_with_firewall_rules

Usage

powerpipe query terraform_azure_compliance.query.cosmosdb_account_with_firewall_rules

Steampipe Tables

SQL

select
address as resource,
case
when (attributes_std ->> 'public_network_access_enabled') :: boolean
and (
attributes_std ->> 'is_virtual_network_filter_enabled'
) :: boolean = 'false'
and (attributes_std ->> 'ip_range_filter') is null then 'alarm'
else 'ok'
end status,
split_part(address, '.', 2) || case
when (attributes_std ->> 'public_network_access_enabled') :: boolean
and (
attributes_std ->> 'is_virtual_network_filter_enabled'
) :: boolean = 'false'
and (attributes_std ->> 'ip_range_filter') is null then ' not have firewall rules'
else ' have firewall rules'
end || '.' reason,
path || ':' || start_line
from
terraform_resource
where
type = 'azurerm_cosmosdb_account';

Controls

The query is being used by the following controls: