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.
160
GB and click Update.Open your Terraform configuration and locate the File System resource.
Update the size_gb
argument with the new volume size.
resource "vultr_vfs" "file_system" {
label = "File-System"
region = "ewr"
size_gb = 160 # Updated size
}
Apply the configuration and observe the following output:
Apply complete! Resources: 0 added, 1 changed, 0 destroyed.
No comments yet.