Data Source: azurerm_app_service_plan

Use this data source to obtain information about an App Service Plan (formerly known as a Server Farm).

Example Usage

data "azurerm_app_service_plan" "test" {
  name                = "search-app-service-plan"
  resource_group_name = "search-service"
}

output "app_service_plan_id" {
  value = "${data.azurerm_app_service_plan.test.id}"
}

Argument Reference

  • name - (Required) The name of the App Service Plan.
  • resource_group_name - (Required) The Name of the Resource Group where the App Service Plan exists.

Attributes Reference

  • id - The ID of the App Service Plan.

  • location - The Azure location where the App Service Plan exists

  • kind - The Operating System type of the App Service Plan

  • sku - A sku block as documented below.

  • properties - A properties block as documented below.

  • tags - A mapping of tags assigned to the resource.

  • maximum_number_of_workers - The maximum number of workers supported with the App Service Plan's sku.

A sku block supports the following:

  • tier - Specifies the plan's pricing tier.

  • size - Specifies the plan's instance size.

  • capacity - Specifies the number of workers associated with this App Service Plan.

A properties block supports the following:

© 2018 HashiCorp
Licensed under the MPL 2.0 License.
https://www.terraform.io/docs/providers/azurerm/d/app_service_plan.html