Learn how to permanently delete a Vultr File System Volume from your account.
Deleting a Vultr File System volume removes the serverless storage from your account and stops further charges. Backup any important files before performing this operation because you can't undo the change. You can migrate the files to a different Vultr File System volume or a Vultr Cloud Compute instance. Detach all Vultr Cloud Compute instances from the volume before deleting.
Follow this guide to delete Vultr File System volume using the Vultr Customer Portal or Terraform.
Open your Terraform configuration where the File System resource is defined.
Remove the vultr_vfs
resource block, or destroy it by target.
resource "vultr_vfs" "file_system" {
# ...existing fields (label, region, size_gb)
}
# To delete, either remove this block from configuration
# or run: terraform destroy -target vultr_vfs.file_system
Apply the configuration and observe the following output:
Apply complete! Resources: 0 added, 0 changed, 1 destroyed.
No comments yet.