Skip to content

Commit d34e1ca

Browse files
authored
Merge pull request #272556 from mehasharma/meha-neweditsmidapril
Meha neweditsmidapril
2 parents a6e5c38 + be506ff commit d34e1ca

File tree

3 files changed

+39
-0
lines changed

3 files changed

+39
-0
lines changed
72.5 KB
Loading
64.1 KB
Loading

articles/trusted-signing/quickstart.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,44 @@ Trusted Signing provides users with both an Azure portal and Azure CLI extension
2323

2424
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.
2525

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+
2664
## Create a Trusted Signing account
2765

2866
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
306344
- [Learn more about the signing integrations.](how-to-signing-integrations.md)
307345
- [Learn more about different Trust Models supported in Trusted Signing](concept-trusted-signing-trust-models.md)
308346
- [Learn more about Certificate management](concept-trusted-signing-cert-management.md)
347+

0 commit comments

Comments
 (0)