Control: Function Apps builtin logging should be enabled
Description
Ensure that builtin logging is enabled for Function Apps.
Usage
Run the control in your terminal:
powerpipe control run terraform_azure_compliance.control.appservice_function_app_builtin_logging_enabled
Snapshot and share results via Turbot Pipes:
powerpipe loginpowerpipe control run terraform_azure_compliance.control.appservice_function_app_builtin_logging_enabled --share
SQL
This control uses a named query:
select address as resource, case when (attributes_std ->> 'enable_builtin_logging') = 'false' then 'alarm' else 'ok' end status, split_part(address, '.', 2) || case when (attributes_std ->> 'enable_builtin_logging') = 'false' then ' builtin logging disabled' else ' builtin logging enabled' end || '.' reason , path || ':' || start_linefrom terraform_resourcewhere type in ('azurerm_function_app', 'azurerm_function_app_slot');