Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs fix: minor errors in Unity Catalog docs #1626

Merged
merged 6 commits into from
Sep 23, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions docs/guides/unity-catalog-azure.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
page_title: "Unity Catalog set up on Azure"
---

# Deploying pre-requisite resources and enabling Unity Catalog (Azure Preview)
# Deploying pre-requisite resources and enabling Unity Catalog

Databricks Unity Catalog brings fine-grained governance and security to Lakehouse data using a familiar, open interface. You can use Terraform to deploy the underlying cloud resources and Unity Catalog objects automatically, using a programmatic approach.

Expand All @@ -14,7 +14,7 @@ This guide is provided as-is and you can use this guide as the basis for your cu

To get started with Unity Catalog, this guide takes you throw the following high-level steps:

- [Deploying pre-requisite resources and enabling Unity Catalog (Azure Preview)](#deploying-pre-requisite-resources-and-enabling-unity-catalog-azure-preview)
- [Deploying pre-requisite resources and enabling Unity Catalog](#deploying-pre-requisite-resources-and-enabling-unity-catalog)
- [Provider initialization](#provider-initialization)
- [Configure Azure objects](#configure-azure-objects)
- [Create a Unity Catalog metastore and link it to workspaces](#create-a-unity-catalog-metastore-and-link-it-to-workspaces)
Expand Down Expand Up @@ -276,8 +276,9 @@ resource "databricks_grants" "external_creds" {
resource "databricks_external_location" "some" {
name = "external"
url = format("abfss://%s@%s.dfs.core.windows.net/",
azurerm_storage_account.ext_storage.name,
azurerm_storage_container.ext_storage.name)
azurerm_storage_container.ext_storage.name,
azurerm_storage_account.ext_storage.name)

credential_name = databricks_storage_credential.external.id
comment = "Managed by TF"
depends_on = [
Expand Down Expand Up @@ -350,10 +351,9 @@ resource "databricks_cluster" "dev" {
spark_version = data.databricks_spark_version.latest.id
node_type_id = data.databricks_node_type.smallest.id
autotermination_minutes = 10
enable_elastic_disk = false
num_workers = 2
azure_attributes {
availability = "SPOT"
availability = "SPOT_WITH_FALLBACK_AZURE"
}
data_security_mode = "SINGLE_USER"
single_user_name = each.value.user_name
Expand Down
4 changes: 2 additions & 2 deletions docs/guides/unity-catalog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
page_title: "Unity Catalog set up on AWS"
---

# Deploying pre-requisite resources and enabling Unity Catalog (AWS Preview)
# Deploying pre-requisite resources and enabling Unity Catalog

Databricks Unity Catalog brings fine-grained governance and security to Lakehouse data using a familiar, open interface. You can use Terraform to deploy the underlying cloud resources and Unity Catalog objects automatically, using a programmatic approach.

Expand All @@ -17,7 +17,7 @@ This guide is provided as-is and you can use this guide as the basis for your cu

To get started with Unity Catalog, this guide takes you throw the following high-level steps:

- [Deploying pre-requisite resources and enabling Unity Catalog (AWS Preview)](#deploying-pre-requisite-resources-and-enabling-unity-catalog-aws-preview)
- [Deploying pre-requisite resources and enabling Unity Catalog](#deploying-pre-requisite-resources-and-enabling-unity-catalog)
- [Provider initialization](#provider-initialization)
- [Configure AWS objects](#configure-aws-objects)
- [Create users and groups](#create-users-and-groups)
Expand Down
2 changes: 1 addition & 1 deletion docs/resources/cluster.md
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ resource "databricks_cluster" "this" {
max_workers = 50
}
azure_attributes {
availability = "SPOT_AZURE"
availability = "SPOT_WITH_FALLBACK_AZURE"
first_on_demand = 1
spot_bid_max_price = 100
}
Expand Down