Deleting a Vultr CDN Push Zone subscription is a straightforward process that removes the associated caching and distribution configurations for your content. This action will terminate the CDN subscription, clearing any cached data and stopping the distribution of your content through Vultr's network. By deleting 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 subscription from your Vultr account using the Vultr Customer Portal, API, or CLI.
Send a GET
request to the List CDN Push Zones endpoint and note the target Push Zone subscription'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 Delete CDN Push Zone endpoint to delete the target Push Zone subscription.
$ curl "https://api.vultr.com/v2/cdns/push-zones/{pushzone-id}" \
-X DELETE \
-H "Authorization: Bearer ${VULTR_API_KEY}"
List all available CDN Push Zone subscriptions and note the target Push Zone subscription's ID.
$ vultr-cli cdn push list
Delete the target Push Zone subscription.
$ vultr-cli cdn push delete <pushzone-id>
No comments yet.