turbot/terraform_azure_compliance

Query: appservice_web_app_latest_php_version

Usage

powerpipe query terraform_azure_compliance.query.appservice_web_app_latest_php_version

Steampipe Tables

SQL

select
address as resource,
case
when (attributes_std -> 'site_config') is null then 'alarm'
when (
attributes_std -> 'site_config' ->> 'linux_fx_version'
) :: text not like 'PHP%' then 'ok'
when (
attributes_std -> 'site_config' ->> 'linux_fx_version'
) :: text = 'PYTHON|3.9' then 'ok'
else 'alarm'
end status,
split_part(address, '.', 2) || case
when (attributes_std -> 'site_config') is null then ' ''site_config'' not defined'
when (
attributes_std -> 'site_config' ->> 'linux_fx_version'
) :: text not like 'PHP%' then ' not using php version'
when (
attributes_std -> 'site_config' ->> 'linux_fx_version'
) :: text = 'PHP|8.0' then ' using the latest php version'
else ' not using latest php version'
end || '.' reason,
path || ':' || start_line
from
terraform_resource
where
type = 'azurerm_app_service';

Controls

The query is being used by the following controls: