Skip to content

Commit 292de7c

Browse files
committed
update link
1 parent 5fe237e commit 292de7c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

articles/app-service/quickstart-arm-template.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,7 @@ This template contains several parameters that are predefined for your convenien
102102
| Parameters | Type | Default value | Description |
103103
|------------|---------|------------------------------|-------------|
104104
| webAppName | string | "webApp-**[`<uniqueString>`](../azure-resource-manager/templates/template-functions-string.md#uniquestring)**" | App name |
105+
| appServicePlanName | string | "webAppPlan-**[`<uniqueString>`](../azure-resource-manager/templates/template-functions-string.md#uniquestring)**" | App Service Plan name |
105106
| location | string | "[[resourceGroup().location](../azure-resource-manager/templates/template-functions-resource.md#resourcegroup)]" | App region |
106107
| skuTier | string | "P1v3" | Instance size ([View available SKUs](https://learn.microsoft.com/azure/app-service/configure-custom-container?tabs=debian&pivots=container-windows#customize-container-memory)) |
107108
| appSettings | string | "[{"name": "PORT","value": "8080"}]" | App Service listening port. Needs to be 8080. |
@@ -117,7 +118,7 @@ Azure CLI is used here to deploy the template. You can also use the Azure portal
117118
The following code creates a resource group, an App Service plan, and a web app. A default resource group, App Service plan, and location have been set for you. Replace `<app-name>` with a globally unique app name (valid characters are `a-z`, `0-9`, and `-`).
118119

119120
::: zone pivot="platform-windows"
120-
Run the code below to deploy a .NET framework app on Windows.
121+
Run the code below to deploy a [.NET app](https://mcr.microsoft.com/product/dotnet/samples/tags) on Windows.
121122

122123
```azurecli-interactive
123124
az group create --name myResourceGroup --location "southcentralus" &&

0 commit comments

Comments
 (0)