Yandex Cloud
Search
Contact UsTry it for free
  • Customer Stories
  • Documentation
  • Blog
  • All Services
  • System Status
    • Featured
    • Infrastructure & Network
    • Data Platform
    • Containers
    • Developer tools
    • Serverless
    • Security
    • Monitoring & Resources
    • AI for business
    • Business tools
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Start testing with double trial credits
    • Cloud credits to scale your IT product
    • Gateway to Russia
    • Cloud for Startups
    • Center for Technologies and Society
    • Yandex Cloud Partner program
    • Price calculator
    • Pricing plans
  • Customer Stories
  • Documentation
  • Blog
© 2025 Direct Cursus Technology L.L.C.
Terraform in Yandex Cloud
  • Getting started
  • Solution library
    • Overview
    • Release notes
          • resourcemanager_cloud
          • resourcemanager_folder

In this article:

  • Example usage
  • Schema
  • Optional
  • Read-Only
  1. Terraform reference
  2. Resources
  3. Resource Manager
  4. Data Sources
  5. resourcemanager_cloud

yandex_resourcemanager_cloud (Data Source)

Written by
Yandex Cloud
Updated at September 11, 2025
  • Example usage
  • Schema
    • Optional
    • Read-Only

Use this data source to get cloud details. For more information, see the official documentation.

Warning

Either cloud_id or name must be specified.

Example usageExample usage

//
// Get information about existing Cloud.
//
data "yandex_resourcemanager_cloud" "my_cloud" {
  name = "foo-cloud"
}

output "cloud_create_timestamp" {
  value = data.yandex_resourcemanager_cloud.my_cloud.created_at
}

SchemaSchema

OptionalOptional

  • cloud_id (String) ID of the cloud.
  • description (String) The resource description.
  • name (String) The resource name.

Read-OnlyRead-Only

  • created_at (String) The creation timestamp of the resource.
  • id (String) The ID of this resource.

Was the article helpful?

Previous
storage_object
Next
resourcemanager_folder
© 2025 Direct Cursus Technology L.L.C.