Yandex Cloud
Search
Contact UsGet started
  • Blog
  • Pricing
  • Documentation
  • All Services
  • System Status
    • Featured
    • Infrastructure & Network
    • Data Platform
    • Containers
    • Developer tools
    • Serverless
    • Security
    • Monitoring & Resources
    • ML & AI
    • Business tools
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Customer Stories
    • Gateway to Russia
    • Cloud for Startups
    • Education and Science
  • Blog
  • Pricing
  • Documentation
Yandex project
© 2025 Yandex.Cloud LLC
Yandex IoT Core
    • All guides
    • Sending messages
    • Subscribing a device or registry to receive messages
    • Exporting messages to Data Streams
    • Viewing the connection log
      • Getting information about registries
      • Creating a registry
      • Updating a registry
      • Enabling and disabling a registry
      • Deleting a registry
    • Viewing operations with the service's resources
  • Access management
  • Pricing policy
  • Terraform reference
  • Monitoring metrics
  • Audit Trails events
  • Release notes
  • FAQ
  1. Step-by-step guides
  2. Managing registries
  3. Deleting a registry

Deleting a registry

Written by
Yandex Cloud
Updated at May 13, 2025

Warning

You can only delete an empty registry. Make sure to delete devices from the registry before deleting the registry itself.

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

Management console
CLI
Terraform
API

To delete a registry:

  1. In the management console, select the folder you want to delete the registry from.
  2. Select IoT Core.
  3. To the right of the name of the registry to delete, click and select Delete from the drop-down list.
  4. In the window that opens, click Delete.

If you do not have the Yandex Cloud (CLI) command line interface yet, install and initialize it.

  1. Delete the registry:

    yc iot registry delete my-registry
    
  2. Make sure the registry was deleted:

    yc iot registry list
    

    Result:

    +----+------+
    | ID | NAME |
    +----+------+
    +----+------+
    

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 documentation on the Terraform website or mirror website.

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

To delete a registry created using Terraform:

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

    Example 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 information about the yandex_iot_core_registry resource parameters in Terraform, see the relevant provider documentation.

  2. In the command line, change to the folder where you edited the configuration file.

  3. Make sure the configuration file is correct using this command:

    terraform validate
    

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

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

    terraform plan
    

    The terminal will display a list of resources with their parameters. No changes will be made at this step. If the configuration contains any errors, Terraform will point them out.

  5. Apply the configuration changes:

    terraform apply
    
  6. Confirm the changes: type yes into the terminal and press Enter.

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

    yc iot registry list
    

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

Was the article helpful?

Previous
Enabling and disabling a registry
Next
Creating an alias
Yandex project
© 2025 Yandex.Cloud LLC