Delete a Vultr VX1™ Cloud Compute instance using the Customer Portal or API while preserving any attached bootable Block Storage volumes.
Deleting a VX1™ Cloud Compute instance removes the server and returns its IP address to the Vultr IP pool. However, if the instance is booted from a Vultr Block Storage (VBS) bootable volume, the data stored on that volume remains intact.
Follow this guide to delete a Vultr VX1™ Cloud Compute instance using the Vultr Customer Portal, or API.
Send a GET request to the List Instances endpoint and note your target instance's ID.
$ curl "https://api.vultr.com/v2/instances" \
-X GET \
-H "Authorization: Bearer ${VULTR_API_KEY}"
Send a DELETE request to the Delete Instance endpoint to delete the instance.
$ curl "https://api.vultr.com/v2/instances/{instance-id}" \
-X DELETE \
-H "Authorization: Bearer ${VULTR_API_KEY}"