Skip to content

Commit 9f6d5c6

Browse files
how-torenew
1 parent ff5c59b commit 9f6d5c6

File tree

2 files changed

+40
-31
lines changed

2 files changed

+40
-31
lines changed

articles/trusted-signing/TOC.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
href: how-to-sign-history.md
1717
- name: Revoke a certificate profile in Trusted Signing
1818
href: how-to-cert-revocation.md
19+
- name: Renew Trusted Signing Identity Validation
20+
href: how-to-renew-identity-validation.md
1921
- name: Quickstart
2022
items:
2123
- name: Quickstart onboarding

articles/trusted-signing/quickstart.md

Lines changed: 38 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -47,16 +47,38 @@ A resource provider is a service that supplies Azure resources. Use the Azure po
4747

4848
# [Azure CLI](#tab/registerrp-cli)
4949

50-
You can register Trusted Signing resource provider with the commands below:
50+
1. If you're using a local installation, login to Azure CLI using the `az login` command.
51+
52+
2. To finish the authentication process, follow the steps displayed in your terminal. For other sign-in options, see [Sign in with the Azure CLI](/cli/azure/authenticate-azure-cli).
53+
54+
3. When you're prompted, install the Azure CLI extension on first use. For more information about extensions, see Use extensions with the [Azure CLI](/cli/azure/azure-cli-extensions-overview).
55+
56+
4. To see the versions of Azure CLI and dependent libraries that are installed, use the `az version` command.
57+
• To upgrade to the latest version, use the following command:
58+
59+
```bash
60+
az upgrade [--all {false, true}]
61+
[--allow-preview {false, true}]
62+
[--yes]
63+
```
64+
65+
5. To set your default subscription ID, use the `az account set -s <subscriptionId>` command.
66+
67+
6. You can register Trusted Signing resource provider with the command below:
5168

5269
```
5370
az provider register --namespace "Microsoft.CodeSigning"
5471
```
5572

56-
You can verify that registration is complete with the commands below:
73+
7. You can verify that registration is complete with the command below:
74+
75+
```
76+
az provider show --namespace "Microsoft.CodeSigning"
77+
```
5778

79+
8. You can add the extension for Trusted Signing with the command below:
5880
```
59-
az provider show --namespace "microsoft.ConfidentialLedger"
81+
az extension add --name trustedsigning
6082
```
6183

6284
---
@@ -120,32 +142,13 @@ The resources must be created in Azure regions where Trusted Signing is currentl
120142

121143
Complete the following steps to create a Trusted Signing account with Azure CLI:
122144

123-
1. If you're using a local installation, login to Azure CLI using the `az login` command.
124-
125-
2. To finish the authentication process, follow the steps displayed in your terminal. For other sign-in options, see [Sign in with the Azure CLI](/cli/azure/authenticate-azure-cli).
126-
127-
3. When you're prompted, install the Azure CLI extension on first use. For more information about extensions, see Use extensions with the [Azure CLI](/cli/azure/azure-cli-extensions-overview).
128-
129-
4. To see the versions of Azure CLI and dependent libraries that are installed, use the `az version` command.
130-
• To upgrade to the latest version, use the following command:
131-
132-
```bash
133-
az upgrade [--all {false, true}]
134-
[--allow-preview {false, true}]
135-
[--yes]
136-
```
137-
138-
5. To set your default subscription ID, use the `az account set -s <subscriptionId>` command.
139-
140-
6. Create a resource group using the following command:
145+
1. Create a resource group using the following command (Skip this step if you plan to use an existing resource group):
141146

142147
```
143148
az group create --name MyResourceGroup --location EastUS
144149
```
145150

146-
- To list accounts under the resource group, use the `trustedsigning list -g MyResourceGroup` command.
147-
148-
7. Create a unique Trusted Signing account using the following command. (See the below Certificate Profile naming constraints for naming requirements.)
151+
2. Create a unique Trusted Signing account using the following command. (See the below Certificate Profile naming constraints for naming requirements.)
149152

150153
```
151154
trustedsigning create -n MyAccount -l eastus -g MyResourceGroup --sku Basic
@@ -167,10 +170,12 @@ trustedsigning create -n MyAccount -l eastus -g MyResourceGroup --sku Premium
167170

168171
**Helpful commands**:
169172

170-
- Show help commands and detailed options: `trustedsigning -h`
171-
- Show the details of an account: `trustedsigning show -n MyAccount -g MyResourceGroup`
172-
- Update tags: `trustedsigning update -n MyAccount -g MyResourceGroup --tags "key1=value1 key2=value2"`
173-
173+
| Command | Description | |
174+
| :----------------------------------- | :------------------- |
175+
| `trustedsigning -h` | Show help commands and detailed options |
176+
| `trustedsigning show -n MyAccount -g MyResourceGroup` | Show the details of an account |
177+
| `trustedsigning update -n MyAccount -g MyResourceGroup --tags "key1=value1 key2=value2"` | Update tags |
178+
| `trustedsigning list -g MyResourceGroup` | To list accounts under the resource group |
174179
---
175180

176181
## Create an Identity Validation request
@@ -286,9 +291,11 @@ trustedsigning certificate-profile show -g myRG --account-name MyAccount -n MyP
286291

287292
**Helpful commands**:
288293

289-
- Show help for sample commands and detailed parameter descriptions: `trustedsigning certificate-profile create -–help`
290-
- List certificate profile under a Trusted Signing account: `trustedsigning certificate-profile list -g MyResourceGroup --account-name MyAccount`
291-
- Get details of a profile: `trustedsigning certificate-profile show -g MyResourceGroup --account-name MyAccount -n MyProfile`
294+
| Command | Description | |
295+
| :----------------------------------- | :------------------- |
296+
| `trustedsigning certificate-profile create -–help` | Show help for sample commands and detailed parameter descriptions |
297+
| `trustedsigning certificate-profile list -g MyResourceGroup --account-name MyAccount` |List certificate profile under a Trusted Signing account |
298+
| `trustedsigning certificate-profile show -g MyResourceGroup --account-name MyAccount -n MyProfile` | Get details of a profile |
292299

293300
---
294301

0 commit comments

Comments
 (0)