---
title: Resize
url: https://docs.vultr.com/products/storage/file-system/management/resize-file-system
description: A guide explaining how to increase the storage capacity of your Vultr File System Volume
publish_date: 2024-11-13T22:19:00.524552Z
last_updated: 2026-05-26T19:42:34.346393Z
---

# How to Resize 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 Console or Terraform.

=== "Vultr Console"

    1. Navigate to **Products** and select **Cloud Storage**. 
    1. Then, Click **File System**.
    1. Select the target Vultr File System volume.
    1. Click the disk size under **Usage**.
    1. Enter a new disk size, such as `160` GB and click **Update**.

=== "Terraform"

    1. Open your Terraform configuration and locate the File System resource.

    1. 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
        }
        ```

    1. Apply the configuration and observe the following output:

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