Skip to content

Commit 6e8dde9

Browse files
authored
small branding fixes
1 parent 137aa48 commit 6e8dde9

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

articles/app-service/app-service-ip-restrictions.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ You can add access restrictions rules for **Main site** programmatically by choo
212212

213213
### [Azure CLI](#tab/azurecli)
214214

215-
You can run the following command in [Cloud Shell](https://shell.azure.com). For more information about the command, see [`az webapp config access-restriction`](/cli/azure/webapp/config/access-restriction).
215+
You can run the following command in [Azure Cloud Shell](https://shell.azure.com). For more information about the command, see [`az webapp config access-restriction`](/cli/azure/webapp/config/access-restriction).
216216

217217
```azurecli-interactive
218218
az webapp config access-restriction add --resource-group ResourceGroup --name AppName \
@@ -225,7 +225,7 @@ az webapp config access-restriction add --resource-group ResourceGroup --name Ap
225225

226226
### [PowerShell](#tab/powershell)
227227

228-
You can run the following command in [Cloud Shell](https://shell.azure.com). For more information about the command, see [`Add-AzWebAppAccessRestrictionRule`](/powershell/module/Az.Websites/Add-AzWebAppAccessRestrictionRule).
228+
You can run the following command in [Azure Cloud Shell](https://shell.azure.com). For more information about the command, see [`Add-AzWebAppAccessRestrictionRule`](/powershell/module/Az.Websites/Add-AzWebAppAccessRestrictionRule).
229229

230230
```azurepowershell-interactive
231231
Add-AzWebAppAccessRestrictionRule -ResourceGroupName "ResourceGroup" -WebAppName "AppName"
@@ -238,7 +238,7 @@ Add-AzWebAppAccessRestrictionRule -ResourceGroupName "ResourceGroup" -WebAppName
238238

239239
### [Azure Resource Manager](#tab/arm)
240240

241-
For ARM templates, modify the `ipSecurityRestrictions` block. A sample ARM template snippet is provided for you.
241+
For Azure Resource Manager templates (ARM templates), modify the `ipSecurityRestrictions` block. A sample ARM template snippet is provided for you.
242242

243243
```json
244244
{

articles/app-service/configure-basic-auth-disable.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ For more information, see [Create or update Azure custom roles by using the Azur
114114

115115
### [Azure CLI](#tab/cli)
116116

117-
In the following command, replace *\<role-name>* and *\<subscription-guid>* and run in the cloud shell:
117+
In the following command, replace *\<role-name>* and *\<subscription-guid>* and run in Azure Cloud Shell:
118118

119119
```azurecli-interactive
120120
az role definition create --role-definition '{

articles/app-service/deploy-zip.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,13 +96,13 @@ curl -X POST \
9696
9797
# [ARM template](#tab/arm)
9898

99-
ARM templates only support [deployments from remotely hosted packages](#deploy-to-network-secured-apps).
99+
Azure Resource Manager templates (ARM templates) only support [deployments from remotely hosted packages](#deploy-to-network-secured-apps).
100100

101101
-----
102102

103103
## Enable build automation for ZIP deploy
104104

105-
By default, the deployment engine assumes that a ZIP package is ready to run as-is and doesn't run any build automation. To enable the same build automation used in a [Git deployment](deploy-local-git.md), set the `SCM_DO_BUILD_DURING_DEPLOYMENT` app setting. Run the following command in the [Cloud Shell](https://shell.azure.com):
105+
By default, the deployment engine assumes that a ZIP package is ready to run as-is and doesn't run any build automation. To enable the same build automation used in a [Git deployment](deploy-local-git.md), set the `SCM_DO_BUILD_DURING_DEPLOYMENT` app setting. Run the following command in [Azure Cloud Shell](https://shell.azure.com):
106106

107107
```azurecli
108108
az webapp config appsettings set --resource-group <group-name> --name <app-name> --settings SCM_DO_BUILD_DURING_DEPLOYMENT=true

0 commit comments

Comments
 (0)