Skip to content

Commit 3820b35

Browse files
Merge pull request #263135 from msangapu-msft/arm
updates
2 parents 84634a1 + f355e69 commit 3820b35

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ Azure CLI is used here to deploy the template. You can also use the Azure portal
118118
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 `-`).
119119

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

123123
```azurecli-interactive
124124
az group create --name myResourceGroup --location "southcentralus" &&
@@ -131,7 +131,7 @@ Run the code below to create a Python app on Linux.
131131
132132
```azurecli-interactive
133133
az group create --name myResourceGroup --location "southcentralus" &&
134-
az deployment group create --resource-group myResourceGroup --parameters webAppName="<app-name>" linuxFxVersion="PYTHON|3.7" \
134+
az deployment group create --resource-group myResourceGroup --parameters webAppName="<app-name>" linuxFxVersion="PYTHON|3.9" \
135135
--template-uri "https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.web/app-service-docs-linux/azuredeploy.json"
136136
```
137137

@@ -148,7 +148,7 @@ To deploy a different language stack, update `linuxFxVersion` with appropriate v
148148
---
149149
::: zone-end
150150
::: zone pivot="platform-windows-container"
151-
Run the code below to deploy a .NET framework app on a Windows container.
151+
Run the code below to deploy a [.NET app](https://mcr.microsoft.com/product/dotnet/samples/tags) on a Windows container.
152152

153153
```azurecli-interactive
154154
az group create --name myResourceGroup --location "southcentralus" &&

0 commit comments

Comments
 (0)