Yandex Cloud
Search
Contact UsGet started
  • Pricing
  • 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
  • Pricing
  • Customer Stories
  • Documentation
  • Blog
© 2025 Direct Cursus Technology L.L.C.
Terraform in Yandex Cloud
  • Getting started
  • Solution library
    • Overview
    • Release notes
          • logging_group

In this article:

  • Example usage
  • Schema
  • Optional
  • Read-Only
  1. Terraform reference
  2. Resources
  3. Cloud Logging
  4. Data Sources
  5. logging_group

yandex_logging_group (Data Source)

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

Get information about a Yandex Cloud Logging group. For more information, see the official documentation.

Warning

If group_id is not specified name and folder_id will be used to designate Yandex Cloud Logging group.

Example usageExample usage

//
// Get information about existing Logging Group.
//
data "yandex_logging_group" "my_group" {
  group_id = "some_yandex_logging_group_id"
}

output "log_group_retention_period" {
  value = data.yandex_logging_group.my_group.retention_period
}

SchemaSchema

OptionalOptional

  • folder_id (String) The folder identifier that resource belongs to. If it is not provided, the default provider folder-id is used.
  • group_id (String) The Yandex Cloud Logging group ID.
  • name (String) The resource name.

Read-OnlyRead-Only

  • cloud_id (String) The Cloud ID which resource belongs to. If it is not provided, the default provider cloud-id is used.
  • created_at (String) The creation timestamp of the resource.
  • data_stream (String) Data Stream.
  • description (String) The resource description.
  • id (String) The ID of this resource.
  • labels (Map of String) A set of key/value label pairs which assigned to resource.
  • retention_period (String) Log entries retention period for the Yandex Cloud Logging group.
  • status (String) The Yandex Cloud Logging group status.

Was the article helpful?

Previous
dns_zone_iam_binding
Next
logging_group
© 2025 Direct Cursus Technology L.L.C.