turbot/terraform_azure_compliance

Query: storage_account_block_public_access

Usage

powerpipe query terraform_azure_compliance.query.storage_account_block_public_access

Steampipe Tables

SQL

select
address as resource,
case
when (attributes_std -> 'allow_blob_public_access') is null then 'ok'
when (attributes_std -> 'allow_blob_public_access')::bool then 'alarm'
else 'ok'
end status,
split_part(address, '.', 2) || case
when (attributes_std -> 'allow_blob_public_access') is null then ' does not allow public access to the blobs or containers'
when (attributes_std -> 'allow_blob_public_access')::bool then ' allows public access to all the blobs or containers'
else ' does not allow public access to the blobs or containers'
end || '.' reason
, path || ':' || start_line
from
terraform_resource
where
type = 'azurerm_storage_account';

Controls

The query is being used by the following controls: