Skip to content

Latest commit

 

History

History
63 lines (42 loc) · 1.61 KB

File metadata and controls

63 lines (42 loc) · 1.61 KB

Create an Azure Front Door Profile

afd/create-profile/README.md

Prerequisites

This example assumes you have previously completed the following example:

  1. Create an Azure Resource Group

Create an Azure Front Door Profile

Setup environment variable for the Azure Front Door Profile using the command line below:

  export AFD_PROFILE_NAME=javazafd$RANDOM

To create the Azure Front Door Profile use the following command line:

  az afd profile create \
    --profile-name $AFD_PROFILE_NAME \
    --resource-group $RESOURCE_GROUP \
    --sku Premium_AzureFrontDoor

Cleanup

Do NOT forget to remove the resources once you are done running the example.

1m