Deleting a device
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.
To access a device, use its unique ID or name. For information about how to get its unique ID or name, see Getting information about devices
To delete a device:
- In the management console
, select the folder to delete the device from. - Go to IoT Core.
- Select the required registry from the list.
- Select Devices in the left pane of the window.
- To the right of the name of the device 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 CLI yet, install and initialize it.
-
Delete the device:
yc iot device delete my-device -
Make sure the device was deleted:
yc iot device list --registry-name my-registryResult:
+----+------+ | ID | NAME | +----+------+ +----+------+
With Terraform
Terraform is distributed under the Business Source License
For more information about the provider resources, see the relevant documentation on the Terraform
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 device created using Terraform:
-
Open the Terraform configuration file and delete the fragment with the device description.
Example device description in the Terraform configuration:
resource "yandex_iot_core_device" "my_device" { registry_id = "<registry_ID>" name = "test-device" description = "test device for terraform provider documentation" ... }For more information about
yandex_iot_core_deviceproperties, see this Terraform provider guide. -
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 validateIf the configuration is valid, you will get this message:
Success! The configuration is valid. -
Run this command:
terraform planYou 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.
-
Apply the configuration changes:
terraform apply -
Confirm the changes: type
yesinto the terminal and press Enter.You can check the updates using the management console
or this CLI command:yc iot device list --registry-id <registry_ID>
To delete a device, use the delete REST API method for the Device resource or the DeviceService/Delete gRPC API call.