Vultr DocsLatest Content


How to Resize Vultr File System Volume

Updated on 11 September, 2025

A guide explaining how to increase the storage capacity of your Vultr File System Volume


Resizing Vultr File System volume allows you to scale your storage needs depending on your current data usage. For example, you can scale up the storage size from 80GB to 160GB or down to 40GB. You can only shrink a Vultr File System volume to the current storage size. That is, if the current files have occupied 5GB you can't shrink the volume to a lesser storage like 4GB.

Follow this guide to resize a Vultr File System volume using the Vultr Customer Portal or Terraform.

  • Vultr Customer Portal
  • Terraform
  1. Navigate to Products and select Cloud Storage.
  2. Then, Click File System.
  3. Select the target Vultr File System volume.
  4. Click the disk size under Usage.
  5. Enter a new disk size, such as 160 GB and click Update.
  1. Open your Terraform configuration and locate the File System resource.

  2. Update the size_gb argument with the new volume size.

    terraform
    resource "vultr_vfs" "file_system" {
        label   = "File-System"
        region  = "ewr"
        size_gb = 160  # Updated size
    }
    
  3. Apply the configuration and observe the following output:

    Apply complete! Resources: 0 added, 1 changed, 0 destroyed.

Comments

No comments yet.