turbot/terraform_azure_compliance

Query: apimanagement_service_with_virtual_network

Usage

powerpipe query terraform_azure_compliance.query.apimanagement_service_with_virtual_network

Steampipe Tables

SQL

select
address as resource,
case
when (attributes_std -> 'virtual_network_type') is null then 'alarm'
when (attributes_std ->> 'virtual_network_type') :: text <> 'None' then 'ok'
else 'alarm'
end status,
split_part(address, '.', 2) || case
when (attributes_std -> 'virtual_network_type') is null then ' ''virtual_network_type'' is not set'
else ' virtual network is set to ' || (attributes_std ->> 'virtual_network_type')
end || '.' reason,
path || ':' || start_line
from
terraform_resource
where
type = 'azurerm_api_management';

Controls

The query is being used by the following controls: