Deleting a registry
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.
To delete a registry:
- In the management console
, select the folder you want to delete the registry from. - Select IoT Core.
- To the right of the name of the registry to delete, click
and select Delete from the drop-down list. - In the window that opens, click Delete.
If you do not have the Yandex Cloud command line interface yet, install and initialize it.
-
Delete the registry:
yc iot registry delete my-registry
-
Make sure the registry was deleted:
yc iot registry list
Result:
+----+------+ | ID | NAME | +----+------+ +----+------+
Terraform
For more information about the provider resources, see the documentation on the Terraform
If you change the configuration files, Terraform automatically detects which part of your configuration is already deployed, and what should be added or removed.
If you don't have Terraform, install it and configure the Yandex Cloud provider.
To delete a registry created using Terraform:
-
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
parameters in Terraform, see the relevant provider documentation . -
In the command line, change to the folder where you edited the configuration file.
-
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.
-
Run this command:
terraform plan
The terminal will display a list of resources with parameters. No changes will be made at this step. If the configuration contains any errors, Terraform will point them out.
-
Apply the configuration changes:
terraform apply
-
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.