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 Key Management Service
  • Getting started
    • All guides
      • Key
      • Key version
      • Data encryption
      • Encryption key access permissions
    • Viewing operations on service resources
  • Access management
  • Pricing policy
  • Terraform reference
  • Monitoring metrics
  • Audit Trails events
  • FAQ

In this article:

  • Make a version primary
  • Destroy a key version
  • Cancel version destruction
  1. Step-by-step guides
  2. Symmetric encryption
  3. Key version

Key version control

Written by
Yandex Cloud
Updated at June 19, 2026
View in Markdown
  • Make a version primary
  • Destroy a key version
  • Cancel version destruction

You can make key versions primary (a primary key version is used for encryption and decryption by default) and destroy them. To create a new key version, rotate the key.

Make a version primaryMake a version primary

Note

Updating the primary version of a key is an eventually consistent operation. Changes caused by such operations take effect with a delay of up to three hours.

To make a version primary:

Management console
CLI
API
  1. Log in to the management console.
  2. Navigate to Key Management Service.
  3. In the left-hand panel, select Symmetric keys.
  4. Click the key you need in the list to open its attribute page.
  5. In the line of the appropriate version, click and select Make primary.
  1. Get a list of versions for the key:

    yc kms symmetric-key list-versions example-key
    

    Result:

    +----------------------+---------+--------+-----------+
    |          ID          | PRIMARY | STATUS | ALGORITHM |
    +----------------------+---------+--------+-----------+
    | abjhduu82ao0******** | true    | ACTIVE | AES_128   |
    | abj8cvn99nam******** | false   | ACTIVE | AES_128   |
    | abjed9ciau8e******** | false   | ACTIVE | AES_256   |
    | abjvejjvfktq******** | false   | ACTIVE | AES_128   |
    +----------------------+---------+--------+-----------+
    
  2. Change the key version by specifying the ID of the desired version:

    yc kms symmetric-key set-primary-version example-key-1 \
      --version-id abj8cvn99nam********
    

Use the setPrimaryVersion REST API method for the SymmetricKey resource or the SymmetricKeyService/SetPrimaryVersion gRPC API call.

The next encryption or decryption request omitting the key version will use the new primary version.

Destroy a key versionDestroy a key version

You cannot destroy a key version right away: you can only schedule its destruction (for the next day at least).

Alert

At the scheduled time and date, the key version is permanently destroyed: if you still have data encrypted with this key version, you can no longer decrypt it.

Management console
CLI
API

To destroy a version:

  1. Log in to the management console.
  2. Navigate to Key Management Service.
  3. In the left-hand panel, select Symmetric keys.
  4. Click the key you need in the list to open its attribute page.
  5. In the line of the appropriate version, click and select Schedule destruction.

The version will change its status to Scheduled for destruction, and the Destruction date column will show the scheduled destruction date.

To destroy a version:

  1. Get a list of versions for the key:

    yc kms symmetric-key list-versions example-key
    

    Result:

    +----------------------+---------+--------+-----------+
    |          ID          | PRIMARY | STATUS | ALGORITHM |
    +----------------------+---------+--------+-----------+
    | abj8cvn99nam******** | true    | ACTIVE | AES_128   |
    | abjed9ciau8e******** | false   | ACTIVE | AES_256   |
    | abjhduu82ao0******** | false   | ACTIVE | AES_128   |
    | abjvejjvfktq******** | false   | ACTIVE | AES_128   |
    +----------------------+---------+--------+-----------+
    
  2. Schedule the destruction of a version:

    yc kms symmetric-key schedule-version-destruction example-key \
      --version-id abjed9ciau8e********
    

    The version will change its status to SCHEDULED_FOR_DESTRUCTION, and the destroy_at field will show the scheduled destruction time.

Use the scheduleVersionDestruction REST API method for the SymmetricKey resource or the SymmetricKeyService/ScheduleVersionDestruction gRPC API call.

Note

Scheduling a key version deletion is an eventually consistent operation. Changes caused by such operations take effect with a delay of up to three hours.

Cancel version destructionCancel version destruction

If you scheduled the destruction of a key version, you can cancel it before the scheduled date:

Management console
CLI
API
  1. Log in to the management console.
  2. Navigate to Key Management Service.
  3. In the left-hand panel, select Symmetric keys.
  4. Click the key you need in the list to open its attribute page.
  5. In the line of the appropriate version, click and select Cancel destruction.

The version status will revert to Active.

  1. Get a list of versions for the key:

    yc kms symmetric-key list-versions example-key
    

    Result:

    +----------------------+---------+---------------------------+-----------+
    |          ID          | PRIMARY |          STATUS           | ALGORITHM |
    +----------------------+---------+---------------------------+-----------+
    | abj8cvn99nam******** | true    | ACTIVE                    | AES_128   |
    | abjed9ciau8e******** | false   | SCHEDULED_FOR_DESTRUCTION | AES_256   |
    | abjhduu82ao0******** | false   | ACTIVE                    | AES_128   |
    | abjvejjvfktq******** | false   | ACTIVE                    | AES_128   |
    +----------------------+---------+---------------------------+-----------+
    
  2. Cancel the destruction of a version:

    yc kms symmetric-key cancel-version-destruction example-key \
      --version-id abjed9ciau8e********
    

    The version status will revert to ACTIVE.

Use the cancelVersionDestruction REST API method for the SymmetricKey resource or the SymmetricKeyService/CancelVersionDestruction gRPC API call.

Was the article helpful?

Previous
Key
Next
Data encryption
© 2026 Direct Cursus Technology L.L.C.