Skip to content

Commit

Permalink
update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
nkvuong committed Jun 4, 2022
1 parent 5b1d1e8 commit 0867144
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/resources/metastore_data_access.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ The following arguments are required:
* `client_secret` - The client secret generated for the above app ID in AAD. **This field is redacted on output**

`azure_managed_identity` optional configuration block for using managed identity as credential details for Azure:
* `access_connector_id` - The Resource ID of the Azure Databricks Access Connector resource, of the form `"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-name/providers/Microsoft.Databricks/accessConnectors/connector-name`
* `access_connector_id` - The Resource ID of the Azure Databricks Access Connector resource, of the form `/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-name/providers/Microsoft.Databricks/accessConnectors/connector-name`

## Import

Expand Down
6 changes: 3 additions & 3 deletions docs/resources/storage_credential.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,15 @@ resource "databricks_storage_credential" "external_sp" {
application_id = azuread_application.ext_cred.application_id
client_secret = azuread_application_password.ext_cred.value
}
comment = "Managed by TF"
comment = "SP credential managed by TF"
}
resource "databricks_storage_credential" "external_mi" {
name = "mi_credential"
azure_managed_identity {
access_connector_id = var.access_connector_id
}
comment = "Managed by TF"
comment = "Managed identity credential managed by TF"
}
resource "databricks_grants" "external_creds" {
Expand All @@ -76,7 +76,7 @@ The following arguments are required:
* `client_secret` - The client secret generated for the above app ID in AAD. **This field is redacted on output**

`azure_managed_identity` optional configuration block for using managed identity as credential details for Azure:
* `access_connector_id` - The Resource ID of the Azure Databricks Access Connector resource, of the form `"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-name/providers/Microsoft.Databricks/accessConnectors/connector-name`
* `access_connector_id` - The Resource ID of the Azure Databricks Access Connector resource, of the form `/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-name/providers/Microsoft.Databricks/accessConnectors/connector-name`

## Import

Expand Down

0 comments on commit 0867144

Please sign in to comment.