Yandex Cloud
Search
Contact UsGet started
  • Blog
  • Pricing
  • Documentation
  • All Services
  • System Status
    • Featured
    • Infrastructure & Network
    • Data Platform
    • Containers
    • Developer tools
    • Serverless
    • Security
    • Monitoring & Resources
    • ML & AI
    • Business tools
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Customer Stories
    • Gateway to Russia
    • Cloud for Startups
    • Education and Science
  • Blog
  • Pricing
  • Documentation
Yandex project
© 2025 Yandex.Cloud LLC
Yandex Managed Service for YDB
  • Getting started
  • Access management
  • Monitoring metrics
  • Audit Trails events
    • Introduction to 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 editing parameters of a serverless database
    • Creating and editing parameters of a dedicated database
    • Creating row tables in a database
    • Creating document tables in a database
    • Creating a changefeed for a table
    • Creating secondary indexes in row tables
    • Managing YDB topic configurations
  • FAQ
  • Public materials
  1. Working with 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 May 29, 2024

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 Terraform configuration files for YDB, then create a file named main.tf. For example:

mkdir ydb_terraform && cd ydb_terraform
touch main.tf

Description of the provider section settingsDescription of the provider section settings

Add the following section to the beginning of the file and save the file:

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

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

Values of the provider section fields:

  • source: Global provider source address.
  • required_version: Minimum Terraform version the provider is compatible with.
  • provider: Provider name.
  • zone: Availability zone where all cloud resources will be created by default.

To initialize the provider, run the terraform init command in the directory hosting 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 editing parameters of a serverless database
Yandex project
© 2025 Yandex.Cloud LLC