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
    • Yandex SIEM
    • 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 IoT Core
  • Service shutdown
    • All guides
    • Sending messages
    • Subscribing a device or registry to receive messages
    • Exporting messages to Data Streams
    • Viewing a connection log
      • Getting information about a registry
      • Creating a registry
      • Updating a registry
      • Disabling and enabling a registry
      • Deleting a registry
    • Viewing operations with service resources
  • Access management
  • Pricing policy
  • Terraform reference
  • Monitoring metrics
  • Audit Trails events
  • Public materials
  • Release notes
  • FAQ

In this article:

  • Updating a registry name
  • Updating a registry description
  • Managing registry labels
  • Adding a label
  • Updating a label
  • Deleting a label
  1. Step-by-step guides
  2. Managing registries
  3. Updating a registry

Updating a registry

Written by
Yandex Cloud
Updated at August 10, 2026
View in Markdown
  • Updating a registry name
  • Updating a registry description
  • Managing registry labels
    • Adding a label
    • Updating a label
    • Deleting a label

Warning

Yandex IoT Core is no longer available to new users.

Current users can create resources until November 1, 2026. Afterwards, the service will go read-only and cease to operate on December 1, 2026. For more information on the timing and procedure, see Service shutdown.

You can update a registry name or description and manage registry labels.

To access a registry, use its ID or name. For information on how to get the ID or name of a registry, see Getting information about registries.

Updating a registry nameUpdating a registry name

Management console
CLI
Terraform
API

To update the name of a registry:

  1. In the management console, select the folder where you want to update the registry name.
  2. Navigate to IoT Core.
  3. To the right of the registry name, click and select Edit from the drop-down list.
  4. Edit the Name field.
  5. Click Save.

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

Update the registry name:

yc iot registry update my-registry --new-name test-registry

Result:

id: b91ki3851hab********
folder_id: aoek49ghmknn********
created_at: "2019-05-28T11:29:42.420Z"
name: test-registry

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 update the name of a registry created with Terraform:

  1. Open the Terraform configuration file and edit the name parameter value in the registry description.

    Here is an example of a registry description in the Terraform configuration:

    resource "yandex_iot_core_registry" "my_registry" {
      name        = "test-registry"
      description = "test registry for terraform provider documentation"
      }
    ...
    }
    

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

  2. In the terminal, navigate to the directory where you edited the configuration file.

  3. Make sure the configuration file is correct 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. Confirm the changes: type yes into the terminal and press Enter.

    You can check the updated registry name using the management console or this CLI command:

    yc iot registry list
    

To update a registry name, use the update REST API method for the Registry resource or the RegistryService/Update gRPC API call.

Updating a registry descriptionUpdating a registry description

Management console
CLI
Terraform
API

To update a registry description:

  1. In the management console, select the folder where you want to update the registry description.
  2. Navigate to IoT Core.
  3. To the right of the registry name, click and select Edit from the drop-down list.
  4. Edit the Description field.
  5. Click Save.

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

Change the registry description:

yc iot registry update my-registry --description "My test registry."

Result:

id: b91ki3851hab********
folder_id: aoek49ghmknn********
created_at: "2019-05-28T11:29:42.420Z"
name: my-registry
description: My test registry.
labels:
  test_label: my_registry_label

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 update the description of a registry created with Terraform:

  1. Open the Terraform configuration file and edit the description parameter value in the registry description.

    Here is an example of a registry description in the Terraform configuration:

    resource "yandex_iot_core_registry" "my_registry" {
      name        = "test-registry"
      description = "test registry for terraform provider documentation"
      }
    ...
    }
    

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

  2. In the terminal, navigate to the directory where you edited the configuration file.

  3. Make sure the configuration file is correct 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. Confirm the changes: type yes into the terminal and press Enter.

    You can check the updated registry description using the management console or CLI command:

    yc iot registry get <registry_name>
    

To update a registry description, use the update REST API method for the Registry resource or the RegistryService/Update gRPC API call.

Managing registry labelsManaging registry labels

You can manage registry labels in the following ways:

  • Add
  • Edit
  • Delete

Adding a labelAdding a label

Management console
CLI
Terraform
API

To add a registry label:

  1. In the management console, select the folder where you want to add a registry label.
  2. Navigate to IoT Core.
  3. To the right of the registry name, click and select Edit from the drop-down list.
  4. Fill in the Key and Value fields and click Add label.
  5. Click Save.

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

Add a registry label:

yc iot registry add-labels my-registry --labels new_label=test_label

Result:

id: b91ki3851hab********
folder_id: aoek49ghmknn********
created_at: "2019-05-28T11:29:42.420Z"
name: my-registry
labels:
  new_label: test_label

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 add a label to a registry created with Terraform:

  1. In the configuration file, describe the resource you want to create:

    • yandex_iot_core_registry: Registry settings:

      • name: Registry name.
      • description: Registry description.
      • labels: Registry labels in key:value format.

    Here is an example of a resource structure in the configuration file:

    resource "yandex_iot_core_registry" "my_registry" {
      name        = "test-registry"
      description = "test registry for terraform provider documentation"
      labels = {
        new-label = "test-label"
      }
    ...
    }
    

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

  2. In the terminal, navigate to the directory where you edited the configuration file.

  3. Make sure the configuration file is correct 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. Confirm the changes: type yes into the terminal and press Enter.

    You can check registry labels using the following CLI command:

    yc iot registry get <registry_name>
    

To add a registry label, use the update REST API method for the Registry resource or the RegistryService/Update gRPC API call.

Updating a labelUpdating a label

Management console
CLI
Terraform
API

To update a registry label:

  1. In the management console, select the folder where you want to update a registry label.
  2. Navigate to IoT Core.
  3. To the right of the registry name, click and select Edit from the drop-down list.
  4. Edit the Key and Value fields.
  5. Click Save.

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

Update a registry label:

Warning

The existing labels (labels) will be completely overwritten by the ones you provide in your request.

yc iot registry update my-registry --labels test_label=my_registry_label

Result:

id: b91ki3851hab********
folder_id: aoek49ghmknn********
created_at: "2019-05-28T11:29:42.420Z"
name: my-registry
labels:
  test_label: my_registry_label

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 update a label of a registry created with Terraform:

  1. Open the Terraform configuration file and edit the label value in the labels section of the registry description.

    Here is an example of a registry description in the Terraform configuration:

    resource "yandex_iot_core_registry" "my_registry" {
      name        = "test-registry"
      description = "test registry for terraform provider documentation"
      labels = {
        test-label = "my-registry-label"
      }
    ...
    }
    

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

  2. In the terminal, navigate to the directory where you edited the configuration file.

  3. Make sure the configuration file is correct 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. Confirm the changes: type yes into the terminal and press Enter.

    You can check registry labels using the following CLI command:

    yc iot registry get <registry_name>
    

To update a registry label, use the update REST API method for the Registry resource or the RegistryService/Update gRPC API call.

Deleting a labelDeleting a label

Management console
CLI
Terraform
API

To delete a registry label:

  1. In the management console, select the folder where you want to delete a registry label.
  2. Navigate to IoT Core.
  3. To the right of the registry name, click and select Edit from the drop-down list.
  4. To the right of the label to delete, click .
  5. Click Save.

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

Delete a registry label:

yc iot registry remove-labels my-registry --labels new_label

Result:

id: b91ki3851hab********
folder_id: aoek49ghmknn********
created_at: "2019-05-28T11:29:42.420Z"
name: my-registry

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 delete a label of a registry created with Terraform:

  1. Open the Terraform configuration file and delete the label value from the labels section of the registry description. To delete all labels, delete the entire labels section.

    Here is an example of a registry description in the Terraform configuration:

    resource "yandex_iot_core_registry" "my_registry" {
      name        = "test-registry"
      description = "test registry for terraform provider documentation"
      labels = {
        test-label = "my-registry-label"
      }
    ...
    }
    

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

  2. In the terminal, navigate to the directory where you edited the configuration file.

  3. Make sure the configuration file is correct 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. Confirm the changes: type yes into the terminal and press Enter.

    You can check registry labels using the following CLI command:

    yc iot registry get <registry_name>
    

To delete a registry label, use the update REST API method for the Registry resource or the RegistryService/Update gRPC API call.

Was the article helpful?

Previous
Creating a registry
Next
Disabling and enabling a registry
© 2026 Direct Cursus Technology L.L.C.