turbot/terraform_azure_compliance

Query: healthcare_fhir_public_network_access_disabled

Usage

powerpipe query terraform_azure_compliance.query.healthcare_fhir_public_network_access_disabled

Steampipe Tables

SQL

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

Controls

The query is being used by the following controls: