1. Packages
  2. Databricks Provider
  3. API Docs
  4. Repo
Databricks v1.67.0 published on Thursday, Apr 17, 2025 by Pulumi

databricks.Repo

Explore with Pulumi AI

This resource allows you to manage Databricks Git folders (formerly known as Databricks Repos).

To create a Git folder from a private repository you need to configure Git token as described in the documentation. To set this token you can use databricks.GitCredential resource.

Example Usage

You can declare Pulumi-managed Git folder by specifying url attribute of Git repository. In addition to that you may need to specify git_provider attribute if Git provider doesn’t belong to cloud Git providers (Github, GitLab, …). If path attribute isn’t provided, then Git folder will be created in the default location:

import * as pulumi from "@pulumi/pulumi";
import * as databricks from "@pulumi/databricks";

const nutterInHome = new databricks.Repo("nutter_in_home", {url: "https://github.com/user/demo.git"});
Copy
import pulumi
import pulumi_databricks as databricks

nutter_in_home = databricks.Repo("nutter_in_home", url="https://github.com/user/demo.git")
Copy
package main

import (
	"github.com/pulumi/pulumi-databricks/sdk/go/databricks"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := databricks.NewRepo(ctx, "nutter_in_home", &databricks.RepoArgs{
			Url: pulumi.String("https://github.com/user/demo.git"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Databricks = Pulumi.Databricks;

return await Deployment.RunAsync(() => 
{
    var nutterInHome = new Databricks.Repo("nutter_in_home", new()
    {
        Url = "https://github.com/user/demo.git",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.databricks.Repo;
import com.pulumi.databricks.RepoArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var nutterInHome = new Repo("nutterInHome", RepoArgs.builder()
            .url("https://github.com/user/demo.git")
            .build());

    }
}
Copy
resources:
  nutterInHome:
    type: databricks:Repo
    name: nutter_in_home
    properties:
      url: https://github.com/user/demo.git
Copy

Access Control

  • databricks.Permissions can control which groups or individual users can access repos.

The following resources are often used in the same context:

  • End to end workspace management guide.
  • databricks.GitCredential to manage Git credentials.
  • databricks.Directory to manage directories in Databricks Workpace.
  • databricks.Pipeline to deploy Delta Live Tables.
  • databricks.Secret to manage secrets in Databricks workspace.
  • databricks.SecretAcl to manage access to secrets in Databricks workspace.
  • databricks.SecretScope to create secret scopes in Databricks workspace.
  • databricks.WorkspaceConf to manage workspace configuration for expert usage.

Create Repo Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new Repo(name: string, args: RepoArgs, opts?: CustomResourceOptions);
@overload
def Repo(resource_name: str,
         args: RepoArgs,
         opts: Optional[ResourceOptions] = None)

@overload
def Repo(resource_name: str,
         opts: Optional[ResourceOptions] = None,
         url: Optional[str] = None,
         branch: Optional[str] = None,
         commit_hash: Optional[str] = None,
         git_provider: Optional[str] = None,
         path: Optional[str] = None,
         sparse_checkout: Optional[RepoSparseCheckoutArgs] = None,
         tag: Optional[str] = None)
func NewRepo(ctx *Context, name string, args RepoArgs, opts ...ResourceOption) (*Repo, error)
public Repo(string name, RepoArgs args, CustomResourceOptions? opts = null)
public Repo(String name, RepoArgs args)
public Repo(String name, RepoArgs args, CustomResourceOptions options)
type: databricks:Repo
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. RepoArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. RepoArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. RepoArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. RepoArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. RepoArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var repoResource = new Databricks.Repo("repoResource", new()
{
    Url = "string",
    Branch = "string",
    CommitHash = "string",
    GitProvider = "string",
    Path = "string",
    SparseCheckout = new Databricks.Inputs.RepoSparseCheckoutArgs
    {
        Patterns = new[]
        {
            "string",
        },
    },
    Tag = "string",
});
Copy
example, err := databricks.NewRepo(ctx, "repoResource", &databricks.RepoArgs{
	Url:         pulumi.String("string"),
	Branch:      pulumi.String("string"),
	CommitHash:  pulumi.String("string"),
	GitProvider: pulumi.String("string"),
	Path:        pulumi.String("string"),
	SparseCheckout: &databricks.RepoSparseCheckoutArgs{
		Patterns: pulumi.StringArray{
			pulumi.String("string"),
		},
	},
	Tag: pulumi.String("string"),
})
Copy
var repoResource = new Repo("repoResource", RepoArgs.builder()
    .url("string")
    .branch("string")
    .commitHash("string")
    .gitProvider("string")
    .path("string")
    .sparseCheckout(RepoSparseCheckoutArgs.builder()
        .patterns("string")
        .build())
    .tag("string")
    .build());
Copy
repo_resource = databricks.Repo("repoResource",
    url="string",
    branch="string",
    commit_hash="string",
    git_provider="string",
    path="string",
    sparse_checkout={
        "patterns": ["string"],
    },
    tag="string")
Copy
const repoResource = new databricks.Repo("repoResource", {
    url: "string",
    branch: "string",
    commitHash: "string",
    gitProvider: "string",
    path: "string",
    sparseCheckout: {
        patterns: ["string"],
    },
    tag: "string",
});
Copy
type: databricks:Repo
properties:
    branch: string
    commitHash: string
    gitProvider: string
    path: string
    sparseCheckout:
        patterns:
            - string
    tag: string
    url: string
Copy

Repo Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The Repo resource accepts the following input properties:

Url
This property is required.
Changes to this property will trigger replacement.
string
The URL of the Git Repository to clone from. If the value changes, Git folder is re-created.
Branch string
name of the branch for initial checkout. If not specified, the default branch of the repository will be used. Conflicts with tag. If branch is removed, and tag isn't specified, then the repository will stay at the previously checked out state.
CommitHash string
Hash of the HEAD commit at time of the last executed operation. It won't change if you manually perform pull operation via UI or API
GitProvider Changes to this property will trigger replacement. string
case insensitive name of the Git provider. Following values are supported right now (could be a subject for a change, consult Repos API documentation): gitHub, gitHubEnterprise, bitbucketCloud, bitbucketServer, azureDevOpsServices, gitLab, gitLabEnterpriseEdition, awsCodeCommit.
Path Changes to this property will trigger replacement. string
path to put the checked out Git folder. If not specified, , then the Git folder will be created in the default location. If the value changes, Git folder is re-created.
SparseCheckout Changes to this property will trigger replacement. RepoSparseCheckout
Tag string
name of the tag for initial checkout. Conflicts with branch.
Url
This property is required.
Changes to this property will trigger replacement.
string
The URL of the Git Repository to clone from. If the value changes, Git folder is re-created.
Branch string
name of the branch for initial checkout. If not specified, the default branch of the repository will be used. Conflicts with tag. If branch is removed, and tag isn't specified, then the repository will stay at the previously checked out state.
CommitHash string
Hash of the HEAD commit at time of the last executed operation. It won't change if you manually perform pull operation via UI or API
GitProvider Changes to this property will trigger replacement. string
case insensitive name of the Git provider. Following values are supported right now (could be a subject for a change, consult Repos API documentation): gitHub, gitHubEnterprise, bitbucketCloud, bitbucketServer, azureDevOpsServices, gitLab, gitLabEnterpriseEdition, awsCodeCommit.
Path Changes to this property will trigger replacement. string
path to put the checked out Git folder. If not specified, , then the Git folder will be created in the default location. If the value changes, Git folder is re-created.
SparseCheckout Changes to this property will trigger replacement. RepoSparseCheckoutArgs
Tag string
name of the tag for initial checkout. Conflicts with branch.
url
This property is required.
Changes to this property will trigger replacement.
String
The URL of the Git Repository to clone from. If the value changes, Git folder is re-created.
branch String
name of the branch for initial checkout. If not specified, the default branch of the repository will be used. Conflicts with tag. If branch is removed, and tag isn't specified, then the repository will stay at the previously checked out state.
commitHash String
Hash of the HEAD commit at time of the last executed operation. It won't change if you manually perform pull operation via UI or API
gitProvider Changes to this property will trigger replacement. String
case insensitive name of the Git provider. Following values are supported right now (could be a subject for a change, consult Repos API documentation): gitHub, gitHubEnterprise, bitbucketCloud, bitbucketServer, azureDevOpsServices, gitLab, gitLabEnterpriseEdition, awsCodeCommit.
path Changes to this property will trigger replacement. String
path to put the checked out Git folder. If not specified, , then the Git folder will be created in the default location. If the value changes, Git folder is re-created.
sparseCheckout Changes to this property will trigger replacement. RepoSparseCheckout
tag String
name of the tag for initial checkout. Conflicts with branch.
url
This property is required.
Changes to this property will trigger replacement.
string
The URL of the Git Repository to clone from. If the value changes, Git folder is re-created.
branch string
name of the branch for initial checkout. If not specified, the default branch of the repository will be used. Conflicts with tag. If branch is removed, and tag isn't specified, then the repository will stay at the previously checked out state.
commitHash string
Hash of the HEAD commit at time of the last executed operation. It won't change if you manually perform pull operation via UI or API
gitProvider Changes to this property will trigger replacement. string
case insensitive name of the Git provider. Following values are supported right now (could be a subject for a change, consult Repos API documentation): gitHub, gitHubEnterprise, bitbucketCloud, bitbucketServer, azureDevOpsServices, gitLab, gitLabEnterpriseEdition, awsCodeCommit.
path Changes to this property will trigger replacement. string
path to put the checked out Git folder. If not specified, , then the Git folder will be created in the default location. If the value changes, Git folder is re-created.
sparseCheckout Changes to this property will trigger replacement. RepoSparseCheckout
tag string
name of the tag for initial checkout. Conflicts with branch.
url
This property is required.
Changes to this property will trigger replacement.
str
The URL of the Git Repository to clone from. If the value changes, Git folder is re-created.
branch str
name of the branch for initial checkout. If not specified, the default branch of the repository will be used. Conflicts with tag. If branch is removed, and tag isn't specified, then the repository will stay at the previously checked out state.
commit_hash str
Hash of the HEAD commit at time of the last executed operation. It won't change if you manually perform pull operation via UI or API
git_provider Changes to this property will trigger replacement. str
case insensitive name of the Git provider. Following values are supported right now (could be a subject for a change, consult Repos API documentation): gitHub, gitHubEnterprise, bitbucketCloud, bitbucketServer, azureDevOpsServices, gitLab, gitLabEnterpriseEdition, awsCodeCommit.
path Changes to this property will trigger replacement. str
path to put the checked out Git folder. If not specified, , then the Git folder will be created in the default location. If the value changes, Git folder is re-created.
sparse_checkout Changes to this property will trigger replacement. RepoSparseCheckoutArgs
tag str
name of the tag for initial checkout. Conflicts with branch.
url
This property is required.
Changes to this property will trigger replacement.
String
The URL of the Git Repository to clone from. If the value changes, Git folder is re-created.
branch String
name of the branch for initial checkout. If not specified, the default branch of the repository will be used. Conflicts with tag. If branch is removed, and tag isn't specified, then the repository will stay at the previously checked out state.
commitHash String
Hash of the HEAD commit at time of the last executed operation. It won't change if you manually perform pull operation via UI or API
gitProvider Changes to this property will trigger replacement. String
case insensitive name of the Git provider. Following values are supported right now (could be a subject for a change, consult Repos API documentation): gitHub, gitHubEnterprise, bitbucketCloud, bitbucketServer, azureDevOpsServices, gitLab, gitLabEnterpriseEdition, awsCodeCommit.
path Changes to this property will trigger replacement. String
path to put the checked out Git folder. If not specified, , then the Git folder will be created in the default location. If the value changes, Git folder is re-created.
sparseCheckout Changes to this property will trigger replacement. Property Map
tag String
name of the tag for initial checkout. Conflicts with branch.

Outputs

All input properties are implicitly available as output properties. Additionally, the Repo resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
WorkspacePath string
path on Workspace File System (WSFS) in form of /Workspace + path
Id string
The provider-assigned unique ID for this managed resource.
WorkspacePath string
path on Workspace File System (WSFS) in form of /Workspace + path
id String
The provider-assigned unique ID for this managed resource.
workspacePath String
path on Workspace File System (WSFS) in form of /Workspace + path
id string
The provider-assigned unique ID for this managed resource.
workspacePath string
path on Workspace File System (WSFS) in form of /Workspace + path
id str
The provider-assigned unique ID for this managed resource.
workspace_path str
path on Workspace File System (WSFS) in form of /Workspace + path
id String
The provider-assigned unique ID for this managed resource.
workspacePath String
path on Workspace File System (WSFS) in form of /Workspace + path

Look up Existing Repo Resource

Get an existing Repo resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: RepoState, opts?: CustomResourceOptions): Repo
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        branch: Optional[str] = None,
        commit_hash: Optional[str] = None,
        git_provider: Optional[str] = None,
        path: Optional[str] = None,
        sparse_checkout: Optional[RepoSparseCheckoutArgs] = None,
        tag: Optional[str] = None,
        url: Optional[str] = None,
        workspace_path: Optional[str] = None) -> Repo
func GetRepo(ctx *Context, name string, id IDInput, state *RepoState, opts ...ResourceOption) (*Repo, error)
public static Repo Get(string name, Input<string> id, RepoState? state, CustomResourceOptions? opts = null)
public static Repo get(String name, Output<String> id, RepoState state, CustomResourceOptions options)
resources:  _:    type: databricks:Repo    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
Branch string
name of the branch for initial checkout. If not specified, the default branch of the repository will be used. Conflicts with tag. If branch is removed, and tag isn't specified, then the repository will stay at the previously checked out state.
CommitHash string
Hash of the HEAD commit at time of the last executed operation. It won't change if you manually perform pull operation via UI or API
GitProvider Changes to this property will trigger replacement. string
case insensitive name of the Git provider. Following values are supported right now (could be a subject for a change, consult Repos API documentation): gitHub, gitHubEnterprise, bitbucketCloud, bitbucketServer, azureDevOpsServices, gitLab, gitLabEnterpriseEdition, awsCodeCommit.
Path Changes to this property will trigger replacement. string
path to put the checked out Git folder. If not specified, , then the Git folder will be created in the default location. If the value changes, Git folder is re-created.
SparseCheckout Changes to this property will trigger replacement. RepoSparseCheckout
Tag string
name of the tag for initial checkout. Conflicts with branch.
Url Changes to this property will trigger replacement. string
The URL of the Git Repository to clone from. If the value changes, Git folder is re-created.
WorkspacePath string
path on Workspace File System (WSFS) in form of /Workspace + path
Branch string
name of the branch for initial checkout. If not specified, the default branch of the repository will be used. Conflicts with tag. If branch is removed, and tag isn't specified, then the repository will stay at the previously checked out state.
CommitHash string
Hash of the HEAD commit at time of the last executed operation. It won't change if you manually perform pull operation via UI or API
GitProvider Changes to this property will trigger replacement. string
case insensitive name of the Git provider. Following values are supported right now (could be a subject for a change, consult Repos API documentation): gitHub, gitHubEnterprise, bitbucketCloud, bitbucketServer, azureDevOpsServices, gitLab, gitLabEnterpriseEdition, awsCodeCommit.
Path Changes to this property will trigger replacement. string
path to put the checked out Git folder. If not specified, , then the Git folder will be created in the default location. If the value changes, Git folder is re-created.
SparseCheckout Changes to this property will trigger replacement. RepoSparseCheckoutArgs
Tag string
name of the tag for initial checkout. Conflicts with branch.
Url Changes to this property will trigger replacement. string
The URL of the Git Repository to clone from. If the value changes, Git folder is re-created.
WorkspacePath string
path on Workspace File System (WSFS) in form of /Workspace + path
branch String
name of the branch for initial checkout. If not specified, the default branch of the repository will be used. Conflicts with tag. If branch is removed, and tag isn't specified, then the repository will stay at the previously checked out state.
commitHash String
Hash of the HEAD commit at time of the last executed operation. It won't change if you manually perform pull operation via UI or API
gitProvider Changes to this property will trigger replacement. String
case insensitive name of the Git provider. Following values are supported right now (could be a subject for a change, consult Repos API documentation): gitHub, gitHubEnterprise, bitbucketCloud, bitbucketServer, azureDevOpsServices, gitLab, gitLabEnterpriseEdition, awsCodeCommit.
path Changes to this property will trigger replacement. String
path to put the checked out Git folder. If not specified, , then the Git folder will be created in the default location. If the value changes, Git folder is re-created.
sparseCheckout Changes to this property will trigger replacement. RepoSparseCheckout
tag String
name of the tag for initial checkout. Conflicts with branch.
url Changes to this property will trigger replacement. String
The URL of the Git Repository to clone from. If the value changes, Git folder is re-created.
workspacePath String
path on Workspace File System (WSFS) in form of /Workspace + path
branch string
name of the branch for initial checkout. If not specified, the default branch of the repository will be used. Conflicts with tag. If branch is removed, and tag isn't specified, then the repository will stay at the previously checked out state.
commitHash string
Hash of the HEAD commit at time of the last executed operation. It won't change if you manually perform pull operation via UI or API
gitProvider Changes to this property will trigger replacement. string
case insensitive name of the Git provider. Following values are supported right now (could be a subject for a change, consult Repos API documentation): gitHub, gitHubEnterprise, bitbucketCloud, bitbucketServer, azureDevOpsServices, gitLab, gitLabEnterpriseEdition, awsCodeCommit.
path Changes to this property will trigger replacement. string
path to put the checked out Git folder. If not specified, , then the Git folder will be created in the default location. If the value changes, Git folder is re-created.
sparseCheckout Changes to this property will trigger replacement. RepoSparseCheckout
tag string
name of the tag for initial checkout. Conflicts with branch.
url Changes to this property will trigger replacement. string
The URL of the Git Repository to clone from. If the value changes, Git folder is re-created.
workspacePath string
path on Workspace File System (WSFS) in form of /Workspace + path
branch str
name of the branch for initial checkout. If not specified, the default branch of the repository will be used. Conflicts with tag. If branch is removed, and tag isn't specified, then the repository will stay at the previously checked out state.
commit_hash str
Hash of the HEAD commit at time of the last executed operation. It won't change if you manually perform pull operation via UI or API
git_provider Changes to this property will trigger replacement. str
case insensitive name of the Git provider. Following values are supported right now (could be a subject for a change, consult Repos API documentation): gitHub, gitHubEnterprise, bitbucketCloud, bitbucketServer, azureDevOpsServices, gitLab, gitLabEnterpriseEdition, awsCodeCommit.
path Changes to this property will trigger replacement. str
path to put the checked out Git folder. If not specified, , then the Git folder will be created in the default location. If the value changes, Git folder is re-created.
sparse_checkout Changes to this property will trigger replacement. RepoSparseCheckoutArgs
tag str
name of the tag for initial checkout. Conflicts with branch.
url Changes to this property will trigger replacement. str
The URL of the Git Repository to clone from. If the value changes, Git folder is re-created.
workspace_path str
path on Workspace File System (WSFS) in form of /Workspace + path
branch String
name of the branch for initial checkout. If not specified, the default branch of the repository will be used. Conflicts with tag. If branch is removed, and tag isn't specified, then the repository will stay at the previously checked out state.
commitHash String
Hash of the HEAD commit at time of the last executed operation. It won't change if you manually perform pull operation via UI or API
gitProvider Changes to this property will trigger replacement. String
case insensitive name of the Git provider. Following values are supported right now (could be a subject for a change, consult Repos API documentation): gitHub, gitHubEnterprise, bitbucketCloud, bitbucketServer, azureDevOpsServices, gitLab, gitLabEnterpriseEdition, awsCodeCommit.
path Changes to this property will trigger replacement. String
path to put the checked out Git folder. If not specified, , then the Git folder will be created in the default location. If the value changes, Git folder is re-created.
sparseCheckout Changes to this property will trigger replacement. Property Map
tag String
name of the tag for initial checkout. Conflicts with branch.
url Changes to this property will trigger replacement. String
The URL of the Git Repository to clone from. If the value changes, Git folder is re-created.
workspacePath String
path on Workspace File System (WSFS) in form of /Workspace + path

Supporting Types

RepoSparseCheckout
, RepoSparseCheckoutArgs

Patterns This property is required. List<string>

array of paths (directories) that will be used for sparse checkout. List of patterns could be updated in-place.

Addition or removal of the sparse_checkout configuration block will lead to recreation of the Git folder.

Patterns This property is required. []string

array of paths (directories) that will be used for sparse checkout. List of patterns could be updated in-place.

Addition or removal of the sparse_checkout configuration block will lead to recreation of the Git folder.

patterns This property is required. List<String>

array of paths (directories) that will be used for sparse checkout. List of patterns could be updated in-place.

Addition or removal of the sparse_checkout configuration block will lead to recreation of the Git folder.

patterns This property is required. string[]

array of paths (directories) that will be used for sparse checkout. List of patterns could be updated in-place.

Addition or removal of the sparse_checkout configuration block will lead to recreation of the Git folder.

patterns This property is required. Sequence[str]

array of paths (directories) that will be used for sparse checkout. List of patterns could be updated in-place.

Addition or removal of the sparse_checkout configuration block will lead to recreation of the Git folder.

patterns This property is required. List<String>

array of paths (directories) that will be used for sparse checkout. List of patterns could be updated in-place.

Addition or removal of the sparse_checkout configuration block will lead to recreation of the Git folder.

Import

The resource can be imported using the Git folder ID (obtained via UI or using API)

bash

$ pulumi import databricks:index/repo:Repo this repo_id
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
databricks pulumi/pulumi-databricks
License
Apache-2.0
Notes
This Pulumi package is based on the databricks Terraform Provider.