-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #22 from databricks/rportilla-databricks-patch-1
Create README.md
- Loading branch information
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} | ||
} | ||
} | ||
``` |