Control: Remote debugging should be turned off for Web Applications
Description
Remote debugging requires inbound ports to be opened on a web application. Remote debugging should be turned off.
Usage
Run the control in your terminal:
powerpipe control run azure_compliance.control.appservice_web_app_remote_debugging_disabledSnapshot and share results via Turbot Pipes:
powerpipe loginpowerpipe control run azure_compliance.control.appservice_web_app_remote_debugging_disabled --shareSQL
This control uses a named query:
select  app.id as resource,  case    when kind = 'api' then 'skip'    when configuration -> 'properties' ->> 'remoteDebuggingEnabled' = 'false' then 'ok'    else 'alarm'  end as status,  case    when kind = 'api' then name || ' is of ' || kind || ' type.'    when configuration -> 'properties' ->> 'remoteDebuggingEnabled' = 'false' then name || ' remote debugging disabled.'    else name || ' remote debugging enabled.'  end as reason    , app.resource_group as resource_group  , sub.display_name as subscriptionfrom  azure_app_service_web_app as app  left join azure_subscription sub on app.subscription_id = sub.subscription_id;