Skip to content

Commit bf30f8c

Browse files
authored
Merge pull request #111275 from CHEEKATLAPRADEEP-MSFT/patch-92
Azure CXP fixing the documentation - Tutorial: Azure Data Lake Storag…
2 parents 2060f1b + 878429e commit bf30f8c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/storage/blobs/data-lake-storage-use-databricks-spark.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ If you don’t have an Azure subscription, create a [free account](https://azure
4343
> [!IMPORTANT]
4444
> Make sure to assign the role in the scope of the Data Lake Storage Gen2 storage account. You can assign a role to the parent resource group or subscription, but you'll receive permissions-related errors until those role assignments propagate to the storage account.
4545
46-
:heavy_check_mark: When performing the steps in the [Get values for signing in](https://docs.microsoft.com/azure/active-directory/develop/howto-create-service-principal-portal#get-values-for-signing-in) section of the article, paste the tenant ID, app ID, and password values into a text file. You'll need those soon.
46+
:heavy_check_mark: When performing the steps in the [Get values for signing in](https://docs.microsoft.com/azure/active-directory/develop/howto-create-service-principal-portal#get-values-for-signing-in) section of the article, paste the tenant ID, app ID, and client secret values into a text file. You'll need those soon.
4747

4848
### Download the flight data
4949

@@ -147,7 +147,7 @@ In this section, you'll create a container and a folder in your storage account.
147147
configs = {"fs.azure.account.auth.type": "OAuth",
148148
"fs.azure.account.oauth.provider.type": "org.apache.hadoop.fs.azurebfs.oauth2.ClientCredsTokenProvider",
149149
"fs.azure.account.oauth2.client.id": "<appId>",
150-
"fs.azure.account.oauth2.client.secret": "<password>",
150+
"fs.azure.account.oauth2.client.secret": "<clientSecret>",
151151
"fs.azure.account.oauth2.client.endpoint": "https://login.microsoftonline.com/<tenant>/oauth2/token",
152152
"fs.azure.createRemoteFileSystemDuringInitialization": "true"}
153153

@@ -157,7 +157,7 @@ In this section, you'll create a container and a folder in your storage account.
157157
extra_configs = configs)
158158
```
159159

160-
18. In this code block, replace the `appId`, `password`, `tenant`, and `storage-account-name` placeholder values in this code block with the values that you collected while completing the prerequisites of this tutorial. Replace the `container-name` placeholder value with the name of the container.
160+
18. In this code block, replace the `appId`, `clientSecret`, `tenant`, and `storage-account-name` placeholder values in this code block with the values that you collected while completing the prerequisites of this tutorial. Replace the `container-name` placeholder value with the name of the container.
161161

162162
19. Press the **SHIFT + ENTER** keys to run the code in this block.
163163

0 commit comments

Comments
 (0)