Skip to main content
To use Terraform resources and data sources provided by Nebius AI Cloud:
  1. Create a working directory:
    mkdir nebius-terraform-quickstart
    cd nebius-terraform-quickstart
    
  2. Create the following terraform.tf file. It lists the providers required for configuration — in this case, the Nebius AI Cloud provider.
    terraform {
      required_providers {
        nebius = {
          source  = "terraform-provider.storage.eu-north1.nebius.cloud/nebius/nebius"
          version = ">= 0.5.55"
        }
      }
    }
    
  3. Initialize the working directory – this will download and install the provider:
    terraform init
    
After that, create Terraform manifests with Nebius AI Cloud resources in the initialized working directory.

See also