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
    • Overview
    • Providers
    • Resources
    • Data sources
    • Modules
    • States
  • Solution library
  1. Concepts
  2. Resources

Resources

Written by
Yandex Cloud
Updated at August 7, 2025

Resources in Terraform are the fundamental building blocks for creating, modifying, and managing infrastructure. In Terraform configurations, the resources represent various cloud entities, such as virtual machines, networks, data storages, and other infrastructure components.

In Terraform, resources are described in configuration files using the HCL syntax. These files specify attributes of each resource, such as its type, properties, and dependencies on other resources.

Terraform follows a declarative approach to infrastructure management. This means the user describes the desired end state of the infrastructure, and Terraform automatically takes the necessary steps to achieve that state. The declarative approach simplifies infrastructure management and helps to prevent errors.

Each resource type in Terraform has its own attributes you can set when creating the infrastructure. For example, for the yandex_compute_instance resource, you can specify the platform, disk size, number of cores, and other parameters.

Resources can reference each other, defining their creation and deletion order. For example, the yandex_vpc_subnet resource may depend on the yandex_vpc_network resource. This enables Terraform to automatically create and delete resources in the correct order.

When you update the configuration, Terraform compares the current infrastructure state with the target state and only takes the actions required to achieve the target state. This ensures infrastructure consistency and simplifies its updates.

Was the article helpful?

Previous
Providers
Next
Data sources
© 2025 Direct Cursus Technology L.L.C.