Skip to content

Commit f355e69

Browse files
committed
updates
1 parent 1df00ec commit f355e69

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

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

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

0 commit comments

Comments
 (0)