- Manual Purge Access: When requesting Azure staging resources access via My Access from SysAdmin, CDN purge permissions are now included.
If you need to manually purge the cache outside of deployment:
- Navigate to Azure Portal - Production Resource Group
- Find the Front Door profile for the environment you need to purge
- Select Endpoints → Choose the endpoint
- Click Purge and enter
/*to purge all cached content
Alternatively, use Azure CLI:
# Purge staging Front Door cache
az afd endpoint purge \
--resource-group SSW.Consulting.Prod \
--profile-name <staging-profile-name> \
--endpoint-name <staging-endpoint-name> \
--content-paths '/*' \
--domains <staging-domain>
# Purge production Front Door cache
az afd endpoint purge \
--resource-group SSW.Consulting.Prod \
--profile-name <prod-profile-name> \
--endpoint-name <prod-endpoint-name> \
--content-paths '/*' \
--domains <prod-domain>Note: Cache purge typically takes 2-5 minutes to propagate globally.