Deleting a Vultr CDN Push Zone service is a straightforward process that removes the associated caching and distribution configurations for your content. This action will terminate the CDN service, clearing any cached data and stopping the distribution of your content through Vultr's network. By removing the Push Zones, you effectively discontinue the CDN's role in serving and caching your content.
Follow this guide to delete the Vultr CDN Push Zone service on your Vultr account using the Vultr Customer Portal, API, or CLI.
Navigate to Products, click CDN, and then click Push Zones.
Click your target CDN Push Zone service.
Click delete icon.
Click Delete CDN on the confirmation prompt to permanently delete the target CDN Push Zone service.
Send a GET
request to the List Push Zones endpoint and note the target Push Zone service's ID.
$ curl "https://api.vultr.com/v2/cdns/push-zones" \
-X GET \
-H "Authorization: Bearer ${VULTR_API_KEY}"
Send a DELETE
request to the Push Zone endpoint and delete the target Push Zone service.
$ curl "https://api.vultr.com/v2/cdns/push-zones/<puszone-id>" \
-X DELETE \
-H "Authorization: Bearer ${VULTR_API_KEY}"
List all available CDN Push Zone services and note the target Push Zone service's ID.
$ vultr-cli cdn push list
Delete the target Push Zone service.
$ vultr-cli cdn push delete <pushzone-id>