You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/trusted-signing/quickstart.md
+39Lines changed: 39 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,6 +23,44 @@ Trusted Signing provides users with both an Azure portal and Azure CLI extension
23
23
24
24
An existing Azure Tenant ID and Azure subscription. [Create Azure tenant](https://learn.microsoft.com/azure/active-directory/fundamentals/create-new-tenant#create-a-new-tenant-for-your-organization) and [Create Azure subscription](https://docs.microsoft.com/azure/cost-management-billing/manage/create-subscription#create-a-subscription-in-the-azure-portal) before you begin if you don’t already have.
25
25
26
+
27
+
## Register the Trusted Signing resource provider
28
+
29
+
Before using Trusted Signing, you must first register the Trusted Signing resource provider.
30
+
31
+
**How to register**
32
+
A resource provider is a service that supplies Azure resources. Use the Azure portal or Azure CLI az provider register command to register the Trusted Signing resource provider, 'Microsoft.CodeSigning'.
33
+
34
+
# [Azure portal](#tab/registerrp-portal)
35
+
36
+
1. Sign in to the [Azure portal](https://portal.azure.com/).
37
+
2. From either the Azure portal search bar or under All services, select **Subscriptions**.
38
+
3. Select your **Subscription**, where you intend to create Trusted Signing resources.
39
+
40
+
:::image type="content" source="media/trusted-signing-subscription-resource-provider.png" alt-text="Screenshot of trusted-signing-subscription-resource-provider." lightbox="media/trusted-signing-subscription-resource-provider.png":::
41
+
42
+
4. From the list of resource providers, select **Microsoft.CodeSigning**. By default the resource provider is NotRegistered.
43
+
5. Click on the ellipsis, select **Register**.
44
+
6. The status changes to **Registered**.
45
+
46
+
:::image type="content" source="media/trusted-signing-resource-provider-registration.png" alt-text="Screenshot of trusted-signing-resource-provider-registration." lightbox="media/trusted-signing-resource-provider-registration.png":::
47
+
48
+
# [Azure CLI](#tab/registerrp-cli)
49
+
50
+
You can register Trusted Signing resource provider with the commands below:
51
+
52
+
```
53
+
az provider register --namespace "Microsoft.CodeSigning"
54
+
```
55
+
56
+
You can verify that registration is complete with the Azure CLI az provider register command
57
+
58
+
```
59
+
az provider show --namespace "microsoft.ConfidentialLedger"
60
+
```
61
+
62
+
---
63
+
26
64
## Create a Trusted Signing account
27
65
28
66
A Trusted Signing account is a logical container of identity validation and certificate profile resources.
@@ -306,3 +344,4 @@ In this Quickstart, you created a Trusted Signing account, an Identity Validatio
306
344
-[Learn more about the signing integrations.](how-to-signing-integrations.md)
307
345
-[Learn more about different Trust Models supported in Trusted Signing](concept-trusted-signing-trust-models.md)
308
346
-[Learn more about Certificate management](concept-trusted-signing-cert-management.md)
0 commit comments