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:

  • Create a key
  • Edit a key
  • Activating or deactivating a key
  • Rotate a key
  • Destroy a key
  1. Step-by-step guides
  2. Symmetric encryption
  3. Key

Key management

Written by
Yandex Cloud
Improved by
Danila N.
Updated at July 20, 2026
View in Markdown
  • Create a key
  • Edit a key
  • Activating or deactivating a key
  • Rotate a key
  • Destroy a key

You can use Key Management Service to create, rotate, and destroy symmetric encryption keys.

Create a keyCreate a key

To create a key:

Management console
CLI
Terraform
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 Create key and set the key attributes:

    • Any name and optional description.
    • Encryption algorithm, e.g., AES-256.
    • Rotation period (how often to change key versions).
    • (Optional) Enable deletion protection.
  5. Click Create.

When creating a key, you create its first version; to open a page with its attributes, click the key in the list.

Run this command:

yc kms symmetric-key create \
  --name example-key \
  --default-algorithm aes-256 \
  --rotation-period 24h \
  --deletion-protection

Where:

  • --name: Key name.
  • --default-algorithm: Encryption algorithms, such as aes-128, aes-192, aes-256, aes-256-hsm, or gost-r-3412-2015-k.
  • --rotation-period: Key rotation period. To create a key without automatic rotation, do not specify the --rotation-period parameter.
  • --deletion-protection: Key deletion protection. To create a key without deletion protection, do not specify the --deletion-protection parameter.

When creating a key, you create its first version. It is specified in the primary_version field.

With Terraform, you can quickly create a cloud infrastructure in Yandex Cloud and manage it using configuration files. These files store the infrastructure description written in HashiCorp Configuration Language (HCL). If you change the configuration files, Terraform automatically detects which part of your configuration is already deployed, and what should be added or removed.

Terraform is distributed under the Business Source License. The Yandex Cloud provider for Terraform is distributed under the MPL-2.0 license.

For more information about the provider resources, see the guides on the Terraform website or its mirror.

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.

To create a key:

  1. Specify the yandex_kms_symmetric_key resource properties in the configuration file:

    resource "yandex_kms_symmetric_key" "key-a" {
      name                = "<key_name>"
      description         = "<key_description>"
      default_algorithm   = "AES_128"
      rotation_period     = "8760h"
      deletion_protection = true
      lifecycle {
        prevent_destroy = true
      }
    }
    

    Where:

    • name: Key name. The name format is as follows:

      • Length: between 3 and 63 characters.
      • It can only contain lowercase Latin letters, numbers, and hyphens.
      • It must start with a letter and cannot end with a hyphen.
    • description: Key description.

    • default_algorithm: Encryption algorithm. The possible values are AES-128, AES-192, or AES-256.

    • rotation_period: Rotation period (how often to change key versions). To create a key without automatic rotation, do not specify the rotation_period parameter.

    • deletion_protection: Key deletion protection. To create a key without deletion protection, do not specify the deletion_protection parameter.

    • lifecycle.prevent_destroy: Key deletion protection when running Terraform commands. To create a key without such protection, do not specify the lifecycle section.

    Warning

    Deleting a KMS key destroys all data encrypted with that key: the data becomes unrecoverable after the key is deleted. The deletion_protection parameter and the lifecycle section are required to prevent the deletion of the key (e.g., with the terraform destroy command).

    For more information about resource properties in Terraform, see this provider guide.

  2. Validate your configuration 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. Confirm the changes: type yes into the terminal and press Enter.

    This will create all the resources you need in the specified folder. You can check the new resources and their configuration using the management console or these CLI commands:

    yc kms symmetric-key list
    

Use the create REST API method for the SymmetricKey resource or the SymmetricKeyService/Create gRPC API call.

Edit a keyEdit a key

After creating a key, you can change any of its attributes. If you change the encryption algorithm, the new algorithm is used starting with the next key version. To create a new version right away and make it the default one, rotate the key.

To edit a key:

Management console
CLI
Terraform
API
  1. Log in to the management console.
  2. Navigate to Key Management Service.
  3. In the left-hand panel, select Symmetric keys.
  4. In the line with the key, click and select Edit.
  5. Change the key attributes and click Save.

Run this command:

yc kms symmetric-key update \
  --name example-key \
  --new-name example-key-2 \
  --default-algorithm aes-128 \
  --rotation-period 48h \
  --deletion-protection

Where:

  • --name: Key name. If there are several keys of the same name in the folder, use the key ID.
  • --new-name: New key name.
  • --default-algorithm: Encryption algorithms, such as aes-128, aes-192, aes-256, aes-256-hsm, or gost-r-3412-2015-k.
  • --rotation-period: Key rotation period. To disable automatic rotation for an updated key, do not specify the --rotation-period parameter.
  • --deletion-protection: Key deletion protection. To disable deletion protection, specify the --no-deletion-protection parameter.

To edit a key:

  1. Open the Terraform configuration file and change the required parameters of the yandex_kms_symmetric_key resource.

    Here is an example of the configuration file structure:

    ...
    resource "yandex_kms_symmetric_key" "key-a" {
      name                = "example-symmetric-key"
      description         = "description for key"
      default_algorithm   = "AES_128"
      rotation_period     = "8760h"
      deletion_protection = true
    }
    ...
    

    For more on the properties of the yandex_kms_symmetric_key resource, see this provider guide.

  2. Validate your configuration 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 key update using the management console or this CLI command:

    yc kms symmetric-key get <key_name>
    

Use the update REST API method for the SymmetricKey resource or the SymmetricKeyService/Update gRPC API call.

Activating or deactivating a keyActivating or deactivating a key

After creating a key, you can change its current status.

Note

Key deactivation (changing the key status from Active to Inactive) is an eventually consistent operation. Changes caused by such operations take effect with a delay of up to three hours.

To change key status:

Management console
CLI
Terraform
API
  1. Log in to the management console.
  2. Navigate to Key Management Service.
  3. In the left-hand panel, select Symmetric keys.
  4. To deactivate a key, click and select Deactivate next to an Active key.
  5. To activate a key, click and select Activate next to an Inactive key.

Run this command:

yc kms symmetric-key update \
  --name example-key \
  --status active

Where:

  • --name: Key name. If there are several keys of the same name in the folder, use the key ID in the --id parameter.
  • --status: New key status. It can be either active or inactive.
  1. Open the Terraform configuration file and add the status parameter set to ACTIVE or INACTIVE to the yandex_kms_symmetric_key resource's description.

    Here is an example of the configuration file structure:

    ...
    resource "yandex_kms_symmetric_key" "key-a" {
      name                = "example-symmetric-key"
      description         = "description for key"
      ...
      status              = "INACTIVE"
    }
    ...
    

    For more on the properties of the yandex_kms_symmetric_key resource, see this provider guide.

  2. Validate your configuration 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 key status update using the management console or this CLI command:

yc kms symmetric-key get <key_name>

Use the update REST API method for the SymmetricKey resource or the SymmetricKeyService/Update gRPC API call.

Rotate a keyRotate a key

When a key is rotated, a new version is generated and immediately set as the default version. You can set up automatic rotation, but you can also rotate a key manually at any time.

Note

Key rotation is an eventually consistent operation. Changes caused by such operations take effect with a delay of up to three hours.

To rotate a key:

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. In the line with the key, click and select Rotate.
  5. Confirm the rotation (make sure that changing the default version will not affect your work).

Run the command with the key ID or name specified:

yc kms symmetric-key rotate example-key

Use the rotate REST API method for the SymmetricKey resource or the SymmetricKeyService/Rotate gRPC API call.

Destroy a keyDestroy a key

By destroying a key you also destroy all its versions. You cannot delete a key right away: the versions of a key marked for deletion change their status to Scheduled For Destruction for 3 days. During this time, your account will continue to be charged for these key versions. Before the 3 days expire, you can request technical support to restore a key and its versions.

Alert

3 days after the key is requested to be destroyed, the key and its versions are permanently destroyed: if you still have any data encrypted with this key, you cannot decrypt the data.

If key deletion protection is enabled, disable it first.

To destroy a key:

Management console
CLI
Terraform
API
  1. Log in to the management console.
  2. Navigate to Key Management Service.
  3. In the left-hand panel, select Symmetric keys.
  4. In the line with the key, click and select Delete.
  5. In the window that opens, click Delete.

Run the command with the key ID or name specified:

yc kms symmetric-key delete example-key

To delete a key created with Terraform:

  1. Open the Terraform configuration file and delete the fragment with the key description.

    Example key description in the Terraform configuration:

    ...
    resource "yandex_kms_symmetric_key" "key-a" {
      name              = "example-symmetric-key"
      description       = "description for key"
      default_algorithm = "AES_128"
      rotation_period   = "8760h"
    }
    ...
    
  2. In the command line, go to the directory with the Terraform configuration file.

  3. Check the configuration using this command:

    terraform validate
    

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

    Success! The configuration is valid.
    
  4. 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.

  5. Apply the configuration changes:

    terraform apply
    
  6. Type yes and press Enter to confirm changes.

    You can check the update using the management console or this CLI command:

    yc kms symmetric-key list
    

Use the delete REST API method for the SymmetricKey resource or the SymmetricKeyService/Delete gRPC API call.

Note

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

Useful linksUseful links

Managing Key Management Service keys with Terraform

Was the article helpful?

Previous
All guides
Next
Key version
© 2026 Direct Cursus Technology L.L.C.