turbot/steampipe-mod-terraform-azure-compliance

Control: App Service plans should be zone redundant

Description

This control ensures that App Service plans are zone redundant.

Usage

Run the control in your terminal:

powerpipe control run terraform_azure_compliance.control.appservice_plan_zone_redundant

Snapshot and share results via Turbot Pipes:

powerpipe login
powerpipe control run terraform_azure_compliance.control.appservice_plan_zone_redundant --share

SQL

This control uses a named query:

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

Tags