From 33eccb3366d8e5a9d48d02adcf2875260b72f71b Mon Sep 17 00:00:00 2001 From: rportilla-databricks <38080604+rportilla-databricks@users.noreply.github.com> Date: Wed, 30 Nov 2022 23:18:46 -0500 Subject: [PATCH] Create README.md --- modules/azure_uc/README.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 modules/azure_uc/README.md diff --git a/modules/azure_uc/README.md b/modules/azure_uc/README.md new file mode 100644 index 0000000..49f792b --- /dev/null +++ b/modules/azure_uc/README.md @@ -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" + } + } +} +```