Skip to content

Commit

Permalink
Merge pull request #22 from databricks/rportilla-databricks-patch-1
Browse files Browse the repository at this point in the history
Create README.md
  • Loading branch information
rportilla-databricks authored Dec 1, 2022
2 parents 414df95 + 33eccb3 commit 57734a9
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions modules/azure_uc/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
page_title: "Enabling Unity Catalog on Azure Databricks"
---

# Set up a metastore, required infrastructure, and metastore assignments with a set of Azure Databricks workspaces

This guide uses the following variables in configurations:

- `resource_group_id`: resource group in Azure to associate all infrastructure used for the Unity Catalog metastore
- `workspaces_to_associate`: List of workspaces to associate with created metastore

This guide is provided as-is and you can use this guide as the basis for your custom Terraform module.

## Provider initialization

```hcl
terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = ">=3.30.0"
}
databricks = {
source = "databricks/databricks"
version = ">=1.6.4"
}
}
}
```

0 comments on commit 57734a9

Please sign in to comment.