Skip to content

Instantly share code, notes, and snippets.

@janjaali
Created January 19, 2020 11:05
Show Gist options
  • Save janjaali/8b77f3b978abbb6681c6d7023b51e220 to your computer and use it in GitHub Desktop.
Save janjaali/8b77f3b978abbb6681c6d7023b51e220 to your computer and use it in GitHub Desktop.
Little cheatsheet for Azure CDN

Azure Content Delivery Network (CDN)

Create profile

az cdn profile create --resource-group {RESOURCE_GROUP} `
                      --name {PROFILE_NAME} `
                      --location westeurope `
                      --sku Standard_Microsoft

Create endpoint

az cdn endpoint create --name {NAME} `
                       --origin {AZURE_STORAGE_ENDPOINT} `
                       --origin-host-header {AZURE_STORAGE_ENDPOINT} `
                       --profile-name {PROFILE_NAME} `
                       --resource-group {RESOURCE_GROUP}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment