Yandex Cloud
Search
Discuss with expertTry it for free
  • Customer Stories
  • Documentation
  • Blog
  • All Services
    • Cloud Interconnect
    • Cloud Backup
    • Cloud Registry
    • Yandex AI Studio
    • Compute Cloud
    • Object Storage
    • Managed Service for Kubernetes®
    • Yandex BareMetal
    • Smart Web Security
    • Security Deck
    • Managed Service for PostgreSQL
    • Managed Service for ClickHouse®
    • Monium
    • Cloud CDN
    • Network Load Balancer
    • Virtual Private Cloud
    • Cloud DNS
    • Application Load Balancer
    • Yandex Cloud Video
    • Stackland
    • Yandex Cloud Router
    • Yandex Managed Service for Trino
    • Managed Service for MySQL®
    • Managed Service for Valkey™
    • Managed Service for Apache Spark™
    • Yandex StoreDoc
    • Managed Service for OpenSearch
    • Managed Service for Apache Kafka®
    • Data Transfer
    • Yandex MPP Analytics Engine for PostgreSQL
    • Yandex Managed Service for Apache Airflow®
    • Data Processing
    • Yandex MetaData Hub
    • Managed Service for YDB
    • Managed Service for Sharded PostgreSQL
    • Managed Service for YTsaurus
    • Yandex WebSQL
    • DataLens
    • Yandex Search API
    • SpeechSense
    • SpeechKit
    • DataSphere
    • Vision OCR
    • Translate
    • Yandex Identity Hub
    • Key Management Service
    • Certificate Manager
    • Yandex Lockbox
    • Audit Trails
    • SmartCaptcha
    • Cloud Desktop
    • SourceCraft Code Assistant
    • Container Registry
    • Managed Service for GitLab
    • Managed Service for Prometheus®
    • Cloud Functions
    • API Gateway
    • Yandex Cloud Postbox
    • Message Queue
    • Serverless Integrations
    • IoT Core
    • Data Streams
    • Serverless Containers
    • Cloud Notification Service
    • Yandex Query
    • Identity and Access Management
    • Yandex Cloud Console
    • Resource Manager
    • Yandex Cloud Billing
    • Yandex Cloud Quota Manager
    • Cloud Apps
  • 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

In this article:

  • Installing Terraform for Windows, Linux, and macOS from the HashiCorp website
  • Installing a provider for YDB
  1. Using YDB via Terraform
  2. Installing and configuring Terraform and a provider to connect to YDB

Installing and configuring Terraform and a provider to connect to YDB

Written by
Yandex Cloud
Updated at April 24, 2026
View in Markdown
  • Installing Terraform for Windows, Linux, and macOS from the HashiCorp website
  • Installing a provider for YDB

You can download Terraform from the official HashiCorp website. If the website is unavailable, use our mirror. Download the Terraform distribution for your platform and add the path to the folder with the executable to the PATH: export PATH=$PATH:/path/to/terraform variable.

Installing Terraform for Windows, Linux, and macOS from the HashiCorp websiteInstalling Terraform for Windows, Linux, and macOS from the HashiCorp website

Linux
macOS
Windows
  • Download the Terraform distribution and follow this guide to install it.
  • Download the Terraform distribution and follow this guide to install it.
  • Install Terraform using the Homebrew package manager by running the brew install terraform command.
  • Download Terraform from the official website and follow this guide to install it.
  • Install Terraform using the Chocolatey package manager by running the choco install terraform command.

Once you have installed Terraform, configure it to access YDB. First, install a provider to connect to YDB and provide API methods.

Installing a provider for YDBInstalling a provider for YDB

Terraform will download and install a provider from the URL you specified in the provider_installation section of the .terraformrc file.

Linux/macOS
Windows
  1. Open the Terraform CLI configuration file, ~/.terraformrc, in any text editor.

    Note

    The .terraformrc file must be in the user's home root folder, e.g., /home/user/ or /User/user/.

  2. Add the following section to the file:

    provider_installation {
        network_mirror {
            url = "https://terraform-mirror.yandexcloud.net/"
            include = ["registry.terraform.io/*/*"]
        }
        direct {
            exclude = ["registry.terraform.io/*/*"]
        }
    }
    
  1. Open the Terraform CLI terraform.rc configuration file in your user's %APPDATA% folder.

  2. Add the following section to the file:

    provider_installation {
        network_mirror {
            url = "https://terraform-mirror.yandexcloud.net/"
            include = ["registry.terraform.io/*/*"]
    }
        direct {
            exclude = ["registry.terraform.io/*/*"]
        }
    }
    

This completes the installation and configuration of Terraform and the provider for connecting to YDB. You can move on to creating configuration files for YDB access.

Was the article helpful?

Previous
Getting authentication credentials
Next
Creating configuration files and connecting to YDB
© 2026 Direct Cursus Technology L.L.C.