Skip to content

Commit 7fb10b0

Browse files
committed
jeff feedback
1 parent 60a1332 commit 7fb10b0

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

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

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ This template contains several parameters that are predefined for your convenien
8888
---
8989
::: zone-end
9090
::: zone pivot="platform-windows-container"
91-
The template used in this quickstart is from [Azure Quickstart Templates](https://azure.microsoft.com/resources/templates/app-service-docs-windows-container). It deploys an App Service plan and an App Service app on a Windows container.
91+
The template used in this quickstart is from [Azure Quickstart Templates](https://learn.microsoft.com/samples/azure/azure-quickstart-templates/app-service-docs-windows-container/). It deploys an App Service plan and an App Service app on a Windows container.
9292

9393
:::code language="json" source="~/quickstart-templates/quickstarts/microsoft.web/app-service-docs-windows-container/azuredeploy.json":::
9494

@@ -103,10 +103,7 @@ This template contains several parameters that are predefined for your convenien
103103
|------------|---------|------------------------------|-------------|
104104
| webAppName | string | "webApp-**[`<uniqueString>`](../azure-resource-manager/templates/template-functions-string.md#uniquestring)**" | App name |
105105
| location | string | "[[resourceGroup().location](../azure-resource-manager/templates/template-functions-resource.md#resourcegroup)]" | App region |
106-
| sku | string | "F1" | Instance size (F1 = Free Tier) |
107-
| language | string | ".net" | Programming language stack (.NET, php, node, html) |
108-
| helloWorld | boolean | False | True = Deploy "Hello World" app |
109-
| repoUrl | string | " " | External Git repo (optional) |
106+
| skuTier | string | "P1v3" | Instance size (F1 = Free Tier) |
110107
| kind | string | "windows" | External Git repo (optional) |
111108
| hyperv | string | "true" | External Git repo (optional) |
112109
| windowsFxVersion | string | "DOCKER&#124;mcr.microsoft.com/dotnet/samples:aspnetapp" | External Git repo (optional) |
@@ -155,7 +152,7 @@ Run the code below to deploy a .NET framework app on a Windows container.
155152
```azurecli-interactive
156153
az group create --name myResourceGroup --location "southcentralus" &&
157154
az deployment group create --resource-group myResourceGroup \
158-
--parameters language=".net" helloWorld="true" webAppName="<app-name>" \
155+
--parameters webAppName="<app-name>" \
159156
--template-uri "https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.web/app-service-docs-windows-container/azuredeploy.json"
160157
::: zone-end
161158

0 commit comments

Comments
 (0)