steampipe plugin install azure

Table: azure_app_service_plan - Query Azure App Service Plans using SQL

Azure App Service Plan is a service within Microsoft Azure that defines a set of compute resources for a web app to run. These compute resources are analogous to the server farm in conventional web hosting. It specifies the number of VM instances to allocate, the size of each instance, and the pricing tier.

Table Usage Guide

The azure_app_service_plan table provides insights into the App Service Plans within Microsoft Azure. As a Cloud Engineer, explore App Service Plan-specific details through this table, including the number of web apps, capacity, maximum number of workers, and other associated metadata. Utilize it to uncover information about each App Service Plan, such as its current status, tier, and the geographical location of the data center where the plan is running.

Examples

App service plan SKU info

Explore the details of your Azure App Service Plan to understand the specifics of your service tier and capacity. This can help you assess if your current plan aligns with your application's requirements and if there is a need for scaling or downgrading.

select
name,
sku_family,
sku_name,
sku_size,
sku_tier,
sku_capacity
from
azure_app_service_plan;
select
name,
sku_family,
sku_name,
sku_size,
sku_tier,
sku_capacity
from
azure_app_service_plan;

List of Hyper-V container app service plan

Explore which Azure App Service Plans are using Hyper-V containers. This can help determine the areas in which these specific types of containers are being utilized, aiding in resource management and optimization.

select
name,
hyper_v,
kind,
region
from
azure_app_service_plan
where
hyper_v;
select
name,
hyper_v,
kind,
region
from
azure_app_service_plan
where
hyper_v = 1;

List of App service plan that owns spot instances

Explore which Azure App Service Plans are utilizing spot instances. This is useful for managing costs and understanding the distribution of your resources.

select
name,
is_spot,
kind,
region,
resource_group
from
azure_app_service_plan
where
is_spot;
select
name,
is_spot,
kind,
region,
resource_group
from
azure_app_service_plan
where
is_spot = 1;

Schema for azure_app_service_plan

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
akasjsonbArray of globally unique identifier strings (also known as) for the resource.
appsjsonbSite a web app, a mobile app backend, or an API app.
cloud_environmenttextThe Azure Cloud Environment.
hyper_vbooleanSpecify whether resource is Hyper-V container app service plan
idtextContains ID to identify an app service plan uniquely
is_spotbooleanSpecify whether this App Service Plan owns spot instances, or not
is_xenonbooleanSpecify whether resource is Hyper-V container app service plan
kindtextContains the kind of the resource
maximum_elastic_worker_countbigintMaximum number of total workers allowed for this ElasticScaleEnabled App Service Plan
maximum_number_of_workersbigintMaximum number of instances that can be assigned to this App Service plan
nametext=The friendly name that identifies the app service plan
per_site_scalingbooleanSpecify whether apps assigned to this App Service plan can be scaled independently
provisioning_statetextProvisioning state of the App Service Environment
regiontextThe Azure region/location in which the resource is located.
reservedbooleanSpecify whether the resource is Linux app service plan, or not
resource_grouptext=The resource group which holds this resource.
sku_capacitybigintCurrent number of instances assigned to the resource.
sku_familytextFamily code of the resource SKU
sku_nametextName of the resource SKU
sku_sizetextSize specifier of the resource SKU
sku_tiertextService tier of the resource SKU
statustextApp Service plan status
subscription_idtextThe Azure Subscription ID in which the resource is located.
tagsjsonbA map of tags for the resource.
titletextTitle of the resource.
typetextThe resource type of the app service plan

Export

This table is available as a standalone Exporter CLI. Steampipe exporters are stand-alone binaries that allow you to extract data using Steampipe plugins without a database.

You can download the tarball for your platform from the Releases page, but it is simplest to install them with the steampipe_export_installer.sh script:

/bin/sh -c "$(curl -fsSL https://steampipe.io/install/export.sh)" -- azure

You can pass the configuration to the command with the --config argument:

steampipe_export_azure --config '<your_config>' azure_app_service_plan