Skip to content

Commit dc4313c

Browse files
committed
Removed secrets, acrolinx fixes.
1 parent e9ff442 commit dc4313c

File tree

1 file changed

+3
-18
lines changed

1 file changed

+3
-18
lines changed

articles/frontdoor/standard-premium/front-door-add-rules-cli.md

Lines changed: 3 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.custom: devx-track-azurecli
1212

1313
# Tutorial: Add and customize delivery rules for Azure Front Door Standard/Premium (Preview) with Azure CLI
1414

15-
Azure Front Door Standard/Premium (Preview) is a fast, reliable, and secure modern cloud CDN that uses the Microsoft global edge network and integrates with intelligent threat protection. Azure Front Door Standard focuses on content delivery. Azure Front Door Premium adds extensive security capabilities and customization. This tutorial focuses on creating an Azure Front Door profile, then adding delivery rules for more granular control over your web apps.
15+
Azure Front Door Standard/Premium (Preview) is a fast, reliable, and secure modern cloud CDN that uses the Microsoft global edge network and integrates with intelligent threat protection. Azure Front Door Standard focuses on content delivery. Azure Front Door Premium adds extensive security capabilities and customization. This tutorial focuses on creating an Azure Front Door profile, then adding delivery rules for more granular control over your web app behaviors.
1616

1717
> [!NOTE]
1818
> This documentation is for Azure Front Door Standard/Premium (Preview). Looking for information on Azure Front Door? View [Azure Front Door Docs](../front-door-overview.md).
@@ -246,24 +246,9 @@ To test instant global failover, we'll use the following steps:
246246

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

249-
## Create a secret
250-
251-
Secrets are used to reference your own certificate stored in Azure Key Vault. You must specify the secret name when creating a custom domain if you want to use your own certificate for TLS encryption.
252-
253-
Run [az afd secret create](/cli/azure/afd/secret#az_afd_secret_create) to create a new secret in your Azure Front Door profile.
254-
255-
```azurecli
256-
az afd secret create \
257-
--profile-name contosoafd \
258-
--resource-group myRGFDCentral \
259-
--secret-name contosocert \
260-
--secret-source /subscriptions/mysubscription/resourceGroups/myRGFDCentral/providers/Microsoft.KeyVault/vaults/contosokeyvault/certificates/contosocert \
261-
--use-latest-version true
262-
```
263-
264249
## Create a rule set
265250

266-
By adding a rule set, you can customize how HTTP requests are handled at the edge and provide more controls over your web application behaviors. Run [az afd rule-set create](/cli/azure/afd/rule-set#az_afd_rule_set_create) to create a rule set in your Azure Front Door profile.
251+
Create a rule set to customize how HTTP requests are handled at the edge. Delivery rules added to the rule set provide more control over your web application behaviors. Run [az afd rule-set create](/cli/azure/afd/rule-set#az_afd_rule_set_create) to create a rule set in your Azure Front Door profile.
267252

268253
```azurecli
269254
az afd rule-set create \
@@ -274,7 +259,7 @@ az afd rule-set create \
274259

275260
## Create a delivery rule and add it to your rule set
276261

277-
Create a new delivery rule within your new rule set. Run [az afd rule create](/cli/azure/afd/rule#az_afd_rule_create) to create a delivery rule in your rule set. For this example, we'll create a rule for an http to https redirect.
262+
Create a new delivery rule within your rule set. Run [az afd rule create](/cli/azure/afd/rule#az_afd_rule_create) to create a delivery rule in your rule set. For this example, we'll create a rule for an http to https redirect.
278263

279264
```azurecli
280265
az afd rule create \

0 commit comments

Comments
 (0)