turbot/terraform_azure_compliance

Query: storage_account_replication_type_set

Usage

powerpipe query terraform_azure_compliance.query.storage_account_replication_type_set

Steampipe Tables

SQL

select
address as resource,
case
when (attributes_std ->> 'account_replication_type') in ('GRS', 'RAGRS', 'GZRS', 'RAGZRS') then 'ok'
else 'alarm'
end status,
split_part(address, '.', 2) || case
when (attributes_std ->> 'account_replication_type') in ('GRS', 'RAGRS', 'GZRS', 'RAGZRS') then ' replication type set correctly'
when (attributes_std ->> 'account_replication_type') is null then ' replication type not set'
else ' replication type not set correctly'
end || '.' reason
, path || ':' || start_line
from
terraform_resource
where
type = 'azurerm_storage_account';

Controls

The query is being used by the following controls: