How to create CDN endpoint using Azure CLI

First connect to your Azure instance

az login

Then run the following command

az cdn endpoint create --resource-group *resourceGroupName* --profile-name *cdnProfileName* --name *endpointName* --origin *originDomain*

Once the process completes, you will see a new endpoint in your cdn profile.

Cheers

Comments