yandex_iot_core_registry (Resource)
Written by
Updated at February 9, 2026
Allows management of Yandex Cloud IoT Registry.
Example usage
//
// Create a new IoT Core Registry.
//
resource "yandex_iot_core_registry" "my_registry" {
name = "some_name"
description = "any description"
labels = {
my-label = "my-label-value"
}
log_options {
log_group_id = "log-group-id"
min_level = "ERROR"
}
passwords = [
"my-password1",
"my-password2"
]
certificates = [
"public part of certificate1",
"public part of certificate2"
]
}
Arguments & Attributes Reference
certificates(Set Of String). A set of certificate's fingerprints for the IoT Core Registry.created_at(Read-Only) (String). The creation timestamp of the resource.description(String). The resource description.folder_id(String). The folder identifier that resource belongs to. If it is not provided, the default providerfolder-idis used.id(String).labels(Map Of String). A set of key/value label pairs which assigned to resource.name(Required)(String). The resource name.passwords(Set Of String). A set of passwords's id for the IoT Core Registry.log_options[Block]. Options for logging for IoT Core Registry.disabled(Bool). Is logging for registry disabled.folder_id(String). Log entries are written to default log group for specified folder.log_group_id(String). Log entries are written to specified log group.min_level(String). Minimum log entry level.