Skip to content

Latest commit

 

History

History
89 lines (62 loc) · 3.19 KB

app_service_environment.html.markdown

File metadata and controls

89 lines (62 loc) · 3.19 KB
subcategory layout page_title description
App Service (Web Apps)
azurerm
Azure Resource Manager: azurerm_app_service_environment
Manages an App Service Environment.

azurerm_app_service_environment

Manages an App Service Environment.

Example Usage

resource "azurerm_resource_group" "example" {
  name     = "exampleRG1"
  location = "westeurope"
}

resource "azurerm_virtual_network" "example" {
  name                = "example-vnet1"
  location            = "${azurerm_resource_group.example.location}"
  resource_group_name = "${azurerm_resource_group.example.name}"
  address_space       = ["10.0.0.0/16"]
}

resource "azurerm_subnet" "ase" {
  name                 = "asesubnet"
  resource_group_name  = azurerm_resource_group.example.name
  virtual_network_name = azurerm_virtual_network.example.name
  address_prefix       = "10.0.1.0/24"
}

resource "azurerm_subnet" "gateway" {
  name                 = "gatewaysubnet"
  resource_group_name  = azurerm_resource_group.example.name
  virtual_network_name = azurerm_virtual_network.example.name
  address_prefix       = "10.0.2.0/24"
}

resource "azurerm_app_service_environment" "example" {
  name                   = "example-ase"
  subnet_id              = azurerm_subnet.ase.id
  pricing_tier           = "I2"
  front_end_scale_factor = 10
}

Argument Reference

  • name - (Required) The name of the App Service Environment. Changing this forces a new resource to be created.

  • subnet_id - (Required) The ID of the Subnet which the App Service Environment should be connected to. Changing this forces a new resource to be created.

~> NOTE a /24 or larger CIDR is required. Once associated with an ASE this size cannot be changed.

  • pricing_tier - (Optional) Pricing tier for the front end instances. Possible values are I1, I2 and I3. Defaults to I1.

  • front_end_scale_factor - (Optional) Scale factor for front end instances. Possible values are between 5 and 15. Defaults to 15.

  • resource_group_name - (Optional) The name of the Resource Group where the App Service Environment exists. Defaults to the Resource Group of the Subnet (specified by subnet_id).

  • tags - (Optional) A mapping of tags to assign to the resource. Changing this forces a new resource to be created.

Attribute Reference

  • id - The ID of the App Service Environment.

  • location - The location where the App Service Environment exists.

Timeouts

The timeouts block allows you to specify timeouts for certain actions:

  • create - (Defaults to 4 hours) Used when creating the App Service Environment.
  • update - (Defaults to 4 hours) Used when updating the App Service Environment.
  • read - (Defaults to 5 minutes) Used when retrieving the App Service Environment.
  • delete - (Defaults to 4 hours) Used when deleting the App Service Environment.

Import

The App Service Environment can be imported using the resource id, e.g.

terraform import azurerm_app_service_environment.myAppServiceEnv /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Web/hostingEnvironments/myAppServiceEnv