turbot/terraform_azure_compliance

Query: sql_database_zone_redundant_enabled

Usage

powerpipe query terraform_azure_compliance.query.sql_database_zone_redundant_enabled

Steampipe Tables

SQL

select
address as resource,
case
when (attributes_std -> 'zone_redundant') is null then 'alarm'
when (attributes_std ->> 'zone_redundant')::bool then 'ok'
else 'alarm'
end status,
split_part(address, '.', 2) || case
when (attributes_std -> 'zone_redundant') is null then ' ''zone_redundant'' is not set'
when (attributes_std ->> 'zone_redundant')::bool then ' zone redundant'
else ' not zone redundant'
end || '.' reason
, path || ':' || start_line
from
terraform_resource
where
type = 'azurerm_mssql_database';

Controls

The query is being used by the following controls: