Yandex Cloud
Search
Contact UsTry it for free
  • Customer Stories
  • Documentation
  • Blog
  • All Services
  • System Status
  • Marketplace
    • Featured
    • Infrastructure & Network
    • Data Platform
    • AI for business
    • Security
    • DevOps tools
    • Serverless
    • Monitoring & Resources
  • 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
© 2026 Direct Cursus Technology L.L.C.
Yandex Managed Service for YDB
  • Getting started
  • Access management
  • Monitoring metrics
  • Audit Trails events
    • Introduction to using YDB via Terraform
    • Getting authentication credentials
    • Installing and configuring Terraform and a provider to connect to YDB
    • Creating configuration files and connecting to YDB
    • Creating and reconfiguring a serverless database
    • Creating and reconfiguring a dedicated database
    • Creating row-oriented and column-oriented tables in a database
    • Creating document tables in a database
    • Creating a change data feed for a table
    • Creating secondary indexes in row-oriented tables
    • Managing YDB topic configurations
  • FAQ
  • Public materials
  1. Using YDB via Terraform
  2. Creating configuration files and connecting to YDB

Creating configuration files and connecting to YDB

Written by
Yandex Cloud
Improved by
Egor S.
Updated at April 24, 2026

Warning

For this tutorial, you need to install a Terraform provider for YDB. If you do not have a provider for YDB installed, see Installing and configuring Terraform and the YDB provider.

Create a directory where you will place your Terraform configuration files for YDB, then create a file named main.tf., e.g.:

mkdir ydb_terraform && cd ydb_terraform
touch main.tf

Provider section propertiesProvider section properties

Add the following section at the beginning of the file and save this file:

terraform {
  required_providers {
    yandex = {
      source = "yandex-cloud/yandex"
    }
  }
  required_version = ">= 0.13"
}

provider "yandex" {
  zone = "ru-central1-a" # Default availability zone
}

Here is the description of the provider section fields:

  • source: Provider's global source address.
  • required_version: Minimum Terraform version the provider is compatible with.
  • provider: Provider name.
  • zone: Default availability zone for all your cloud resources.

To initialize the provider, run terraform init in the directory with the configuration files. In the terminal, you will see a message about successful installation. Now that Terraform is installed and set up, you can start creating a serverless or dedicated database.

Was the article helpful?

Previous
Installing and configuring Terraform and a provider to connect to YDB
Next
Creating and reconfiguring a serverless database
© 2026 Direct Cursus Technology L.L.C.