Skip to content

Commit 1709e96

Browse files
Merge pull request #220222 from diberry/diberry/1202-blob-passwordless
Blob Storage - JS Dev Guide - passwordless initiative
2 parents 1b7307f + 3223c81 commit 1709e96

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/storage/blobs/storage-blob-javascript-get-started.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ms.topic: how-to
1111
ms.date: 11/30/2022
1212

1313
ms.subservice: blobs
14-
ms.custom: template-how-to, devx-track-js, devguide-js
14+
ms.custom: template-how-to, devx-track-js, devguide-js, passwordless-js
1515
---
1616

1717

@@ -110,7 +110,7 @@ Each type of resource is represented by one or more associated JavaScript client
110110
111111
The [BlobServiceClient](/javascript/api/@azure/storage-blob/blobserviceclient) object is the top object in the SDK. This client allows you to manipulate the service, containers and blobs.
112112
113-
## [Azure AD](#tab/azure-ad)
113+
## [Passwordless](#tab/azure-ad)
114114
115115
Once your Azure storage account identity roles and your local environment are set up, create a JavaScript file which includes the [``@azure/identity``](https://www.npmjs.com/package/@azure/identity) package. Create a credential, such as the [DefaultAzureCredential](/javascript/api/overview/azure/identity-readme#defaultazurecredential), to implement passwordless connections to Blob Storage. Use that credential to authenticate with a [BlobServiceClient](/javascript/api/@azure/storage-blob/blobserviceclient) object.
116116
@@ -168,7 +168,7 @@ Create the [ContainerClient](/javascript/api/@azure/storage-blob/containerclient
168168
169169
### Create ContainerClient directly
170170
171-
#### [Azure AD](#tab/azure-ad)
171+
#### [Passwordless](#tab/azure-ad)
172172
173173
:::code language="javascript" source="~/azure_storage-snippets/blobs/howto/JavaScript/NodeJS-v12/dev-guide/create-container-client-with-default-azure-credential.js" highlight="27-30":::
174174
@@ -205,7 +205,7 @@ List of Blob clients:
205205
206206
### Create BlobClient directly
207207
208-
#### [Azure AD](#tab/azure-ad)
208+
#### [Passwordless](#tab/azure-ad)
209209
210210
:::code language="javascript" source="~/azure_storage-snippets/blobs/howto/JavaScript/NodeJS-v12/dev-guide/create-blob-client-with-default-azure-credential.js" highlight="28-31":::
211211

0 commit comments

Comments
 (0)