yandex_mdb_mongodb_database (DataSource)
Статья создана
Обновлена 9 апреля 2026 г.
Manages a MongoDB Database within the Yandex Cloud. For more information, see the official documentation.
Example usage
//
// Get information about existing MDB MongoDB Database.
//
data "yandex_mdb_mongodb_database" "my_db" {
cluster_id = "some_cluster_id"
name = "test"
}
output "owner" {
value = data.yandex_mdb_mongodb_database.my_db.name
}
Arguments & Attributes Reference
cluster_id(Required)(String). The ID of MongoDB Cluster.id(Read-Only) (String). The resource identifier.name(Required)(String). The name of the database.timeouts[Block].create(String). A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).delete(String). A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.