Yandex Cloud
Search
Discuss with expertTry it for free
  • Customer Stories
  • Documentation
  • Blog
  • All Services
    • Cloud Interconnect
    • Cloud Backup
    • Cloud Registry
    • Yandex AI Studio
    • Compute Cloud
    • Object Storage
    • Managed Service for Kubernetes®
    • Yandex BareMetal
    • Smart Web Security
    • Security Deck
    • Managed Service for PostgreSQL
    • Managed Service for ClickHouse®
    • Monium
    • Cloud CDN
    • Network Load Balancer
    • Virtual Private Cloud
    • Cloud DNS
    • Application Load Balancer
    • Yandex Cloud Video
    • Stackland
    • Yandex Cloud Router
    • Yandex Managed Service for Trino
    • Managed Service for MySQL®
    • Managed Service for Valkey™
    • Managed Service for Apache Spark™
    • Yandex StoreDoc
    • Managed Service for OpenSearch
    • Managed Service for Apache Kafka®
    • Data Transfer
    • Yandex MPP Analytics Engine for PostgreSQL
    • Yandex Managed Service for Apache Airflow®
    • Data Processing
    • Yandex MetaData Hub
    • Managed Service for YDB
    • Managed Service for Sharded PostgreSQL
    • Managed Service for YTsaurus
    • Yandex WebSQL
    • DataLens
    • Yandex Search API
    • SpeechSense
    • SpeechKit
    • DataSphere
    • Vision OCR
    • Translate
    • Yandex Identity Hub
    • Key Management Service
    • Certificate Manager
    • Yandex Lockbox
    • Audit Trails
    • SmartCaptcha
    • Cloud Desktop
    • SourceCraft Code Assistant
    • Container Registry
    • Managed Service for GitLab
    • Managed Service for Prometheus®
    • Cloud Functions
    • API Gateway
    • Yandex Cloud Postbox
    • Message Queue
    • Serverless Integrations
    • IoT Core
    • Data Streams
    • Serverless Containers
    • Cloud Notification Service
    • Yandex Query
    • Identity and Access Management
    • Yandex Cloud Console
    • Resource Manager
    • Yandex Cloud Billing
    • Yandex Cloud Quota Manager
    • Cloud Apps
  • System Status
  • Marketplace
    • Featured
    • Infrastructure & Network
    • Data Platform
    • AI for business
    • Security
    • DevOps tools
    • Serverless
    • Monitoring & Resources
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Start testing with double trial credits
    • Cloud credits to scale your IT product
    • Gateway to Russia
    • Cloud for Startups
    • Center for Technologies and Society
    • Yandex Cloud Partner program
    • Price calculator
    • Pricing plans
  • Customer Stories
  • Documentation
  • Blog
© 2026 Direct Cursus Technology L.L.C.
Yandex Compute Cloud
    • All guides
      • Creating a file storage
      • Attaching a file storage to a VM
      • Detaching a file storage from a VM
      • Updating a file storage
      • Getting file storage info
      • Configuring file storage access permissions
      • Deleting a file storage
    • Viewing operations with resources
    • Viewing metrics Monitoring
  • Yandex Container Solution
  • Access management
  • Pricing policy
  • Terraform reference
  • Metrics Monitoring
  • Audit Trails events
  • Release notes
  1. Step-by-step guides
  2. File storages
  3. Updating a file storage

Updating a file storage

Written by
Yandex Cloud
Updated at July 31, 2026
View in Markdown

After creating a file storage, you can change its name, description, and size.

Note

To resize a file storage, you can only use the CLI or API. You can only increase the storage size. Reducing it is not supported.

Management console
CLI
Terraform
API
  1. In the management console, select the folder where your file storage resides.

  2. Navigate to Compute Cloud.

  3. In the left-hand panel, select File storages.

  4. In the line with the file storage, click and select Edit.

  5. Update the file storage parameters, e.g., rename the storage by editing the Name field.

    Note

    To resize a file storage, you can only use the CLI or API.

  6. Click Save.

If you do not have the Yandex Cloud CLI yet, install and initialize it.

The folder used by default is the one specified when creating the CLI profile. To change the default folder, use the yc config set folder-id <folder_ID> command. You can also specify a different folder for any command using --folder-name or --folder-id. If you access a resource by its name, the search will be limited to the default folder. If you access a resource by its ID, the search will be global, i.e., through all folders based on access permissions.

  1. See the description of the CLI command for updating a file storage:

    • To change the name, description, or size:

      yc compute filesystem update --help
      
    • To resize:

      yc compute filesystem resize --help
      
  2. Get a list of available file storages:

    yc compute filesystem list --format yaml
    

    Result:

    - id: epd0u6h8lh41********
      folder_id: b1g86q4m5vej********
      created_at: "2022-04-26T16:59:19Z"
    ...
      size: "1073741824"
      block_size: "4096"
      status: READY
    
  3. Update the storage parameters by specifying the storage --id or --name value in your command. For example, update the following:

    • Name and description:

      yc compute filesystem update \
        --name storage-1 \
        --new-name storage-3 \
        --description vm-storage
      

      Result:

      id: epd5g123c8hk********
      folder_id: b1g86q4m5vej********
      created_at: "2022-04-26T16:37:30Z"
      ...
      size: "1073741824"
      block_size: "4096"
      status: READY
      
    • Size:

      yc compute filesystem resize \
        --name storage-1 \
        --size 2GB
      

      Result:

      id: epd5g123c8hk********
      folder_id: b1g86q4m5vej********
      created_at: "2022-04-26T16:37:30Z"
      ...
      size: "2147483648"
      block_size: "4096"
      status: READY
      

If you do not have Terraform yet, install it and configure the Yandex Cloud provider.

To manage infrastructure using Terraform under a service account or user accounts (a Yandex account, a federated account, or a local user), authenticate using the appropriate method.

  1. Open the Terraform configuration file and edit the section specifying the file storage:

    Example of specifying a file storage in Terraform configuration
    ...
    resource "yandex_compute_filesystem" "default" {
      name  = "fs-name"
      type  = "network-ssd"
      zone  = "ru-central1-a"
      size  = 150
    }
    ...
    
  2. Apply the changes:

    1. In the terminal, navigate to the configuration file directory.

    2. Make sure the configuration is correct using this command:

      terraform validate
      

      If the configuration is valid, you will get this message:

      Success! The configuration is valid.
      
    3. Run this command:

      terraform plan
      

      You will see a list of resources and their properties. No changes will be made at this step. Terraform will show any errors in the configuration.

    4. Apply the configuration changes:

      terraform apply
      
    5. Type yes and press Enter to confirm the changes.

You can check the file storage updates and settings using the management console or this CLI command:

yc compute filesystem get <file_storage_name>

Use the update REST API method for the Filesystem resource or the FilesystemService/Update gRPC API call.

Was the article helpful?

Previous
Detaching a file storage from a VM
Next
Getting file storage info
© 2026 Direct Cursus Technology L.L.C.