Skip to content

Commit 652ba97

Browse files
committed
Fixing some incorrect references
1 parent a336003 commit 652ba97

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/storage/common/storage-use-azcopy-authorize-azure-active-directory.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: You can provide authorization credentials for AzCopy operations by
44
author: normesta
55
ms.service: azure-storage
66
ms.topic: how-to
7-
ms.date: 11/03/2023
7+
ms.date: 06/10/2024
88
ms.author: normesta
99
ms.subservice: storage-common-concepts
1010
ms.custom: devx-track-azurecli, devx-track-azurepowershell
@@ -147,7 +147,7 @@ export AZCOPY_SPA_CLIENT_SECRET=<client-secret>
147147
export AZCOPY_TENANT_ID=<tenant-id>
148148
```
149149

150-
Replace the `<application-id>` placeholder with the application ID of your service principal's app registration. Replace the `<client-secret>` placeholder with the client secret. Replace the `<tenant-id>` placeholder with the tenant ID of the organization to which the storage account belongs. To find the tenant ID, select **Microsoft Entra ID > Properties > Directory ID** in the Azure portal.
150+
Replace the `<application-id>` placeholder with the application ID of your service principal's app registration. Replace the `<client-secret>` placeholder with the client secret. Replace the `<tenant-id>` placeholder with the tenant ID of the organization to which the storage account belongs. To find the tenant ID, select **Tenant properties > Tenant ID** in the Azure portal.
151151

152152
> [!NOTE]
153153
> Consider using a prompt to collect the password from the user. That way, your password won't appear in your command history.
@@ -170,7 +170,7 @@ export AZCOPY_SPA_CERT_PASSWORD=<certificate-password>
170170
export AZCOPY_TENANT_ID=<tenant-id>
171171
```
172172

173-
Replace the `<application-id>` placeholder with the application ID of your service principal's app registration. Replace the `<path-to-certificate-file>` placeholder with the relative or fully qualified path to the certificate file. AzCopy saves the path to this certificate but it doesn't save a copy of the certificate, so make sure to keep that certificate in place. Replace the `<certificate-password>` placeholder with the password of the certificate. Replace the `<tenant-id>` placeholder with the tenant ID of the organization to which the storage account belongs. To find the tenant ID, select **Microsoft Entra ID > Properties > Directory ID** in the Azure portal.
173+
Replace the `<application-id>` placeholder with the application ID of your service principal's app registration. Replace the `<path-to-certificate-file>` placeholder with the relative or fully qualified path to the certificate file. AzCopy saves the path to this certificate but it doesn't save a copy of the certificate, so make sure to keep that certificate in place. Replace the `<certificate-password>` placeholder with the password of the certificate. Replace the `<tenant-id>` placeholder with the tenant ID of the organization to which the storage account belongs. To find the tenant ID, select **Tenant properties > Tenant ID** in the Azure portal.
174174

175175
> [!NOTE]
176176
> Consider using a prompt to collect the password from the user. That way, your password won't appear in your command history.
@@ -197,7 +197,7 @@ If you receive an error, try including the tenant ID of the organization to whic
197197
azcopy login --tenant-id=<tenant-id>
198198
```
199199

200-
Replace the `<tenant-id>` placeholder with the tenant ID of the organization to which the storage account belongs. To find the tenant ID, select **Microsoft Entra ID > Properties > Directory ID** in the Azure portal.
200+
Replace the `<tenant-id>` placeholder with the tenant ID of the organization to which the storage account belongs. To find the tenant ID, select **Tenant properties > Tenant ID** in the Azure portal.
201201

202202
This command returns an authentication code and the URL of a website. Open the website, provide the code, and then choose the **Next** button.
203203

@@ -270,7 +270,7 @@ Next, type the following command, and then press the ENTER key.
270270
azcopy login --service-principal --application-id application-id --tenant-id=tenant-id
271271
```
272272

273-
Replace the `<application-id>` placeholder with the application ID of your service principal's app registration. Replace the `<tenant-id>` placeholder with the tenant ID of the organization to which the storage account belongs. To find the tenant ID, select **Microsoft Entra ID > Properties > Directory ID** in the Azure portal.
273+
Replace the `<application-id>` placeholder with the application ID of your service principal's app registration. Replace the `<tenant-id>` placeholder with the tenant ID of the organization to which the storage account belongs. To find the tenant ID, select **Tenant properties > Tenant ID** in the Azure portal.
274274

275275
##### Authorize a service principal by using a certificate (azcopy login command)
276276

@@ -295,7 +295,7 @@ Next, type the following command, and then press the ENTER key.
295295
azcopy login --service-principal --application-id application-id --certificate-path <path-to-certificate-file> --tenant-id=<tenant-id>
296296
```
297297

298-
Replace the `<application-id>` placeholder with the application ID of your service principal's app registration. Replace the `<path-to-certificate-file>` placeholder with the relative or fully qualified path to the certificate file. AzCopy saves the path to this certificate but it doesn't save a copy of the certificate, so make sure to keep that certificate in place. Replace the `<tenant-id>` placeholder with the tenant ID of the organization to which the storage account belongs. To find the tenant ID, select **Microsoft Entra ID > Properties > Directory ID** in the Azure portal.
298+
Replace the `<application-id>` placeholder with the application ID of your service principal's app registration. Replace the `<path-to-certificate-file>` placeholder with the relative or fully qualified path to the certificate file. AzCopy saves the path to this certificate but it doesn't save a copy of the certificate, so make sure to keep that certificate in place. Replace the `<tenant-id>` placeholder with the tenant ID of the organization to which the storage account belongs. To find the tenant ID, select **Tenant properties > Tenant ID** in the Azure portal.
299299

300300
> [!NOTE]
301301
> Consider using a prompt as shown in this example. That way, your password won't appear in your console's command history.

0 commit comments

Comments
 (0)