Skip to content

Commit 89f2f73

Browse files
updated changes suggested by reviewer
1 parent 714075d commit 89f2f73

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

articles/frontdoor/standard-premium/create-front-door-cli.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ az group create --name myRGFD --location centralus
3535
Run [az afd profile create](/cli/azure/afd/profile#az-afd-profile-create) to create an Azure Front Door profile.
3636

3737
> [!NOTE]
38-
> If you want to deploy Azure Front Door Standard instead of Premium substitute the value of the sku parameter with Standard_AzureFrontDoor. You won't be able to deploy Managed Rules with WAF Policy, if you choose Standard SKU. For detailed comparison, view [Azure Front Door tier comparison](./tier-comparison.md).
38+
> If you want to deploy Azure Front Door Standard instead of Premium substitute the value of the sku parameter with Standard_AzureFrontDoor. You won't be able to deploy managed rules with WAF Policy, if you choose Standard SKU. For detailed comparison, view [Azure Front Door tier comparison](./tier-comparison.md).
3939
4040
```azurecli
4141
az afd profile create \
@@ -188,8 +188,8 @@ az network front-door waf-policy create \
188188
> [!NOTE]
189189
> If you select `Detection` mode, your WAF doesn't block any requests.
190190
191-
### Assign Managed Rules to the WAF Policy
192-
Run [az network front-door waf-policy managed-rules add](/cli/azure/network/front-door/waf-policy/managed-rules#az-network-front-door-waf-policy-managed-rules-add) to add Managed Rules to your WAF Policy. This example adds Microsoft_DefaultRuleSet_1.2 and Microsoft_BotManagerRuleSet_1.0 to your policy.
191+
### Assign managed rules to the WAF policy
192+
Run [az network front-door waf-policy managed-rules add](/cli/azure/network/front-door/waf-policy/managed-rules#az-network-front-door-waf-policy-managed-rules-add) to add managed rules to your WAF Policy. This example adds Microsoft_DefaultRuleSet_1.2 and Microsoft_BotManagerRuleSet_1.0 to your policy.
193193

194194

195195
```azurecli
@@ -235,7 +235,7 @@ az afd endpoint show --resource-group myRGFD --profile-name contosoafd --endpoin
235235
```
236236
In a browser, go to the endpoint hostname: `contosofrontend-<hash>.z01.azurefd.net`. Your request will automatically get routed to the least latent Web App in the origin group.
237237

238-
:::image type="content" source="../media/create-front-door-portal/front-door-web-app-origin-success.png" alt-text="Your web app is running and waiting for your content":::
238+
:::image type="content" source="../media/create-front-door-portal/front-door-web-app-origin-success.png" alt-text="Screenshot of the message: Your web app is running and waiting for your content":::
239239

240240
To test instant global failover, we'll use the following steps:
241241

@@ -247,23 +247,23 @@ To test instant global failover, we'll use the following steps:
247247
az webapp stop --name WebAppContoso-01 --resource-group myRGFD
248248
```
249249

250-
4. Refresh your browser. You should see the same information page.
250+
3. Refresh your browser. You should see the same information page.
251251

252252
>[!TIP]
253253
>There is a little bit of delay for these actions. You might need to refresh again.
254254
255-
5. Find the other web app, and stop it as well.
255+
4. Find the other web app, and stop it as well.
256256

257257
```azurecli
258258
az webapp stop --name WebAppContoso-02 --resource-group myRGFD
259259
```
260260

261-
6. Refresh your browser. This time, you should see an error message.
261+
5. Refresh your browser. This time, you should see an error message.
262262

263-
:::image type="content" source="../media/create-front-door-portal/web-app-stopped-message.png" alt-text="Both instances of the web app stopped":::
263+
:::image type="content" source="../media/create-front-door-portal/web-app-stopped-message.png" alt-text="Screenshot of the message: Both instances of the web app stopped":::
264264

265265

266-
7. Restart one of the Web Apps by running [az webapp start](/cli/azure/webapp#az-webapp-start&preserve-view=true). Refresh your browser and the page will go back to normal.
266+
6. Restart one of the Web Apps by running [az webapp start](/cli/azure/webapp#az-webapp-start&preserve-view=true). Refresh your browser and the page will go back to normal.
267267

268268
```azurecli
269269
az webapp start --name WebAppContoso-01 --resource-group myRGFD

0 commit comments

Comments
 (0)