From 2fb7268f2e485f0cd61f56b417b4685b8b8a0f18 Mon Sep 17 00:00:00 2001 From: Vuong Date: Thu, 16 Jan 2025 21:57:09 +0700 Subject: [PATCH] renamed security mode to access mode --- docs/guides/unity-catalog-azure.md | 4 ++-- docs/guides/unity-catalog-gcp.md | 4 ++-- docs/guides/unity-catalog.md | 6 +++--- docs/resources/sql_permissions.md | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/guides/unity-catalog-azure.md b/docs/guides/unity-catalog-azure.md index fc1d29b0fa..da4b2eefe2 100644 --- a/docs/guides/unity-catalog-azure.md +++ b/docs/guides/unity-catalog-azure.md @@ -247,9 +247,9 @@ resource "databricks_grants" "things" { ## Configure Unity Catalog clusters -To ensure the integrity of ACLs, Unity Catalog data can be accessed only through compute resources configured with strong isolation guarantees and other security features. A Unity Catalog [databricks_cluster](../resources/cluster.md) has a ‘Security Mode’ set to either **User Isolation** or **Single User**. +To ensure the integrity of ACLs, Unity Catalog data can be accessed only through compute resources configured with strong isolation guarantees and other security features. A Unity Catalog [databricks_cluster](../resources/cluster.md) has the access mode set to either **Shared** or **Single User**. -- **User Isolation** clusters can be shared by multiple users, but has certain [limitations](https://docs.databricks.com/en/compute/access-mode-limitations.html#shared-access-mode-limitations-on-unity-catalog) +- **Shared** clusters can be shared by multiple users, but has certain [limitations](https://docs.databricks.com/en/compute/access-mode-limitations.html#shared-access-mode-limitations-on-unity-catalog) ```hcl data "databricks_spark_version" "latest" { diff --git a/docs/guides/unity-catalog-gcp.md b/docs/guides/unity-catalog-gcp.md index bc8e33d61d..8ea1a39136 100644 --- a/docs/guides/unity-catalog-gcp.md +++ b/docs/guides/unity-catalog-gcp.md @@ -236,9 +236,9 @@ resource "databricks_grants" "things" { ## Configure Unity Catalog clusters -To ensure the integrity of ACLs, Unity Catalog data can be accessed only through compute resources configured with strong isolation guarantees and other security features. A Unity Catalog [databricks_cluster](../resources/cluster.md) has a ‘Security Mode’ set to either **User Isolation** or **Single User**. +To ensure the integrity of ACLs, Unity Catalog data can be accessed only through compute resources configured with strong isolation guarantees and other security features. A Unity Catalog [databricks_cluster](../resources/cluster.md) has the access mode set to either **Shared** or **Single User**. -- **User Isolation** clusters can be shared by multiple users, but has certain [limitations](https://docs.databricks.com/en/compute/access-mode-limitations.html#shared-access-mode-limitations-on-unity-catalog) +- **Shared** clusters can be shared by multiple users, but has certain [limitations](https://docs.databricks.com/en/compute/access-mode-limitations.html#shared-access-mode-limitations-on-unity-catalog) ```hcl data "databricks_spark_version" "latest" { diff --git a/docs/guides/unity-catalog.md b/docs/guides/unity-catalog.md index 61b1bff7d4..ea4f1e450d 100644 --- a/docs/guides/unity-catalog.md +++ b/docs/guides/unity-catalog.md @@ -35,7 +35,7 @@ To get started with Unity Catalog, this guide takes you through the following hi ## Provider initialization -Initialize [provider with `mws` alias](https://www.terraform.io/language/providers/configuration#alias-multiple-provider-configurations) to set up account-level resources. See [provider authentication](../index.md#authenticating-with-service-principal) for more details. +Initialize [provider with `mws` alias](https://www.terraform.io/language/providers/configuration#alias-multiple-provider-configurations) to set up account-level resources. See [provider authentication](../index.md#authenticating-with-databricks-managed-service-principal) for more details. ```hcl terraform { @@ -343,9 +343,9 @@ resource "databricks_grants" "things" { ## Configure Unity Catalog clusters -To ensure the integrity of ACLs, Unity Catalog data can be accessed only through compute resources configured with strong isolation guarantees and other security features. A Unity Catalog [databricks_cluster](../resources/cluster.md) has a ‘Security Mode’ set to either **User Isolation** or **Single User**. +To ensure the integrity of ACLs, Unity Catalog data can be accessed only through compute resources configured with strong isolation guarantees and other security features. A Unity Catalog [databricks_cluster](../resources/cluster.md) has the access mode set to either **Shared** or **Single User**. -- **User Isolation** clusters can be shared by multiple users, but has certain [limitations](https://docs.databricks.com/en/compute/access-mode-limitations.html#shared-access-mode-limitations-on-unity-catalog) +- **Shared** clusters can be shared by multiple users, but has certain [limitations](https://docs.databricks.com/en/compute/access-mode-limitations.html#shared-access-mode-limitations-on-unity-catalog) ```hcl data "databricks_spark_version" "latest" { diff --git a/docs/resources/sql_permissions.md b/docs/resources/sql_permissions.md index 43f754391e..e48a3cce6c 100644 --- a/docs/resources/sql_permissions.md +++ b/docs/resources/sql_permissions.md @@ -48,7 +48,7 @@ resource "databricks_sql_permissions" "foo_table" { ## Argument Reference -* `cluster_id` - (Optional) Id of an existing [databricks_cluster](cluster.md), where the appropriate `GRANT`/`REVOKE` commands are executed. This cluster must have the appropriate data security mode (`USER_ISOLATION` or `LEGACY_TABLE_ACL` specified). If no `cluster_id` is specified, a single-node TACL cluster named `terraform-table-acl` is automatically created. +* `cluster_id` - (Optional) Id of an existing [databricks_cluster](cluster.md), where the appropriate `GRANT`/`REVOKE` commands are executed. This cluster must have the appropriate access mode (`USER_ISOLATION` or `LEGACY_TABLE_ACL` specified). If no `cluster_id` is specified, a single-node TACL cluster named `terraform-table-acl` is automatically created. ```hcl resource "databricks_sql_permissions" "foo_table" {