Skip to content

Commit c7701e4

Browse files
committed
update
1 parent d4d20f1 commit c7701e4

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

articles/confidential-ledger/quickstart-cli.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ ms.topic: quickstart
1111

1212
# Quickstart: Create a confidential ledger using the Azure CLI
1313

14-
Azure confidential ledger is a cloud service that provides a high integrity store for sensitive data logs and records that must be kept intact. In this quickstart you will use the [Azure CLI](/cli/azure/) to create a confidential ledger, view and update its properties, and delete it.
14+
Azure confidential ledger is a cloud service that provides a high integrity store for sensitive data logs and records that must be kept intact. In this quickstart, you use the [Azure CLI](/cli/azure/) to create a confidential ledger, view and update its properties, and delete it.
1515

16-
For more information on Azure confidential ledger, and for examples of what can be stored in a confidential ledger, see [About Microsoft Azure confidential ledger](overview.md).
16+
For more information on Azure confidential ledger and examples of what can be stored in a confidential ledger, see [About Microsoft Azure confidential ledger](overview.md).
1717

1818
[!INCLUDE [quickstarts-free-trial-note](../../includes/quickstarts-free-trial-note.md)]
1919

@@ -27,13 +27,13 @@ For more information on Azure confidential ledger, and for examples of what can
2727

2828
## Get your principal ID
2929

30-
To create a confidential ledger, you'll need your Microsoft Entra principal ID (also called your object ID). To obtain your principal ID, use the Azure CLI [az ad signed-in-user](/cli/azure/ad/signed-in-user) command, and filter the results by `objectId`:
30+
To create a confidential ledger, you need your Microsoft Entra principal ID (also called your object ID). To obtain your principal ID, use the Azure CLI [az ad signed-in-user](/cli/azure/ad/signed-in-user) command, and filter the results by `objectId`:
3131

3232
```azurecli
3333
az ad signed-in-user show --query objectId
3434
```
3535

36-
Your result will be in the format `xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx`.
36+
Your result is in the format `xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx`.
3737

3838
## Create a confidential ledger
3939

@@ -43,9 +43,9 @@ Use the Azure CLI [az confidentialledger create](/cli/azure/confidentialledger#a
4343
az confidentialledger create --name "myLedger" --resource-group "myResourceGroup" --location "EastUS" --ledger-type "Public" --aad-based-security-principals ledger-role-name="Administrator" principal-id="<your-principal-id>"
4444
```
4545

46-
A successful operation will return the properties of the newly created ledger. Take note of the **ledgerUri**. In the example above, this URI is "https://myledger.confidential-ledger.azure.com".
46+
A successful operation returns the properties of the newly created ledger. Take note of the **ledgerUri**. In our example, this URI is "https://myledger.confidential-ledger.azure.com".
4747

48-
You'll need this URI to transact with the confidential ledger from the data plane.
48+
You need this URI to transact with the confidential ledger from the data plane.
4949

5050
## View and update your confidential ledger properties
5151

@@ -67,7 +67,7 @@ To update the properties of a confidential ledger, use do so, use the Azure CLI
6767
az confidentialledger update --name "myLedger" --resource-group "myResourceGroup" --ledger-type "Public" --aad-based-security-principals ledger-role-name="Reader" principal-id="<your-principal-id>"
6868
```
6969

70-
If you again run [az confidentialledger show](/cli/azure/confidentialledger#az-confidentialledger-show), you'll see that the role has been updated.
70+
If you again run [az confidentialledger show](/cli/azure/confidentialledger#az-confidentialledger-show), you see that the role is updated.
7171

7272
```json
7373
"ledgerRoleName": "Reader",
@@ -79,6 +79,6 @@ If you again run [az confidentialledger show](/cli/azure/confidentialledger#az-c
7979

8080
## Next steps
8181

82-
In this quickstart, you created a confidential ledger by using the Azure CLI. To learn more about Azure confidential ledger and how to integrate it with your applications, continue on to the articles below.
82+
In this quickstart, you created a confidential ledger by using the Azure CLI. To learn more about Azure confidential ledger and how to integrate it with your applications, continue on to these articles.
8383

8484
- [Overview of Microsoft Azure confidential ledger](overview.md)

0 commit comments

Comments
 (0)