Skip to content

Commit d9a8b32

Browse files
authored
Merge pull request #275236 from mehasharma/faq-vetting
add changes to faq
2 parents e480f37 + c489cbe commit d9a8b32

File tree

2 files changed

+23
-16
lines changed

2 files changed

+23
-16
lines changed

articles/trusted-signing/faq.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,9 @@ sections:
4343
4444
Steps to take if your identity validation request fails:
4545
- If the Microsoft validation team can't make a determination about your request based on the information that you provide (even after you provide more documentation if we request it), we can't set up Trusted Signing for you. In this scenario, we recommend that you delete your Trusted Signing account so that you aren't billed for unused resources.
46+
- question: What if I need assistance with Identity Validation?
47+
answer: |
48+
For questions with Identity Validation reach out via Microsoft Q&A or Stack Overflow, tag: trusted-signing. Identity Validation issues aren't supported by Azure Support.
4649
- question: What is the cost of using Trusted Signing?
4750
answer: |
4851
Trusted Signing is free for now in public preview. You're prompted to select a Basic SKU or Premium SKU when you create your account.
@@ -63,7 +66,7 @@ sections:
6366
- Per Certification Authority/Browser Forum (CA/Browser Forum) Code Signing Baseline Requirements (CSBRs) for publicly trusted code signing certificates, CN values must be the legal entity's validated name (for example, `Microsoft Corporation`), so there's no flexibility in CN values.
6467
6568
For O:
66-
- At, this time the service doesn't support customization.
69+
- At this time the service doesn't support customization.
6770
- question: What do I do if the New identity validation button in the Azure portal is greyed out?
6871
answer: |
6972
It means that you don't have the Trusted Signing Identity Verifier role assigned to your account. Follow the steps in [Assign roles in Trusted Signing](https://learn.microsoft.com/azure/trusted-signing/tutorial-assign-roles) to assign yourself the appropriate role.

articles/trusted-signing/quickstart.md

Lines changed: 19 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -178,16 +178,16 @@ To create a Trusted Signing account by using the Azure CLI:
178178
To create a Trusted Signing account that has a Basic SKU:
179179

180180
```azurecli
181-
trustedsigning create -n MyAccount -l eastus -g MyResourceGroup --sku Basic
181+
az trustedsigning create -n MyAccount -l eastus -g MyResourceGroup --sku Basic
182182
```
183183

184184
To create a Trusted Signing account that has a Premium SKU:
185185

186186
```azurecli
187-
trustedsigning create -n MyAccount -l eastus -g MyResourceGroup --sku Premium
187+
az trustedsigning create -n MyAccount -l eastus -g MyResourceGroup --sku Premium
188188
```
189189

190-
1. Verify your Trusted Signing account by using the `trustedsigning show -g MyResourceGroup -n MyAccount` command.
190+
1. Verify your Trusted Signing account by using the `az trustedsigning show -g MyResourceGroup -n MyAccount` command.
191191

192192
> [!NOTE]
193193
> If you use an earlier version of the Azure CLI from the Trusted Signing private preview, your account defaults to the Basic SKU. To use the Premium SKU, either upgrade the Azure CLI to the latest version or use the Azure portal to create the account.
@@ -196,10 +196,10 @@ The following table lists *helpful commands* to use when you create a Trusted Si
196196

197197
| Command | Description |
198198
|:-----------------------------------------------------------------------------------------|:------------------------------------------|
199-
| `trustedsigning -h` | Shows help commands and detailed options. |
200-
| `trustedsigning show -n MyAccount -g MyResourceGroup` | Shows the details of an account. |
201-
| `trustedsigning update -n MyAccount -g MyResourceGroup --tags "key1=value1 key2=value2"` | Updates tags. |
202-
| `trustedsigning list -g MyResourceGroup` | Lists all accounts that are in a resource group. |
199+
| `az trustedsigning -h` | Shows help commands and detailed options. |
200+
| `az trustedsigning show -n MyAccount -g MyResourceGroup` | Shows the details of an account. |
201+
| `az trustedsigning update -n MyAccount -g MyResourceGroup --tags "key1=value1 key2=value2"` | Updates tags. |
202+
| `az trustedsigning list -g MyResourceGroup` | Lists all accounts that are in a resource group. |
203203

204204
---
205205

@@ -323,7 +323,7 @@ To create a certificate profile by using the Azure CLI:
323323
1. Create a certificate profile by using the following command:
324324

325325
```azurecli
326-
trustedsigning certificate-profile create -g MyResourceGroup --a
326+
az trustedsigning certificate-profile create -g MyResourceGroup --a
327327
account-name MyAccount -n MyProfile --profile-type PublicTrust --identity-validation-id xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
328328
```
329329

@@ -332,22 +332,22 @@ To create a certificate profile by using the Azure CLI:
332332
1. Create a certificate profile that includes optional fields (street address or postal code) in the subject name of the certificate by using the following command:
333333

334334
```azurecli
335-
trustedsigning certificate-profile create -g MyResourceGroup --account-name MyAccount -n MyProfile --profile-type PublicTrust --identity-validation-id xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx --include-street true
335+
az trustedsigning certificate-profile create -g MyResourceGroup --account-name MyAccount -n MyProfile --profile-type PublicTrust --identity-validation-id xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx --include-street true
336336
```
337337

338338
1. Verify that you successfully created a certificate profile by using the following command:
339339

340340
```azurecli
341-
trustedsigning certificate-profile show -g myRG --account-name MyAccount -n MyProfile
341+
az trustedsigning certificate-profile show -g myRG --account-name MyAccount -n MyProfile
342342
```
343343

344344
The following table lists *helpful commands* to use when you create a certificate profile by using the Azure CLI:
345345

346346
| Command | Description |
347347
| :----------------------------------- | :------------------- |
348-
| `trustedsigning certificate-profile create -–help` | Shows help for sample commands, and shows detailed parameter descriptions. |
349-
| `trustedsigning certificate-profile list -g MyResourceGroup --account-name MyAccount` | Lists all certificate profiles that are associated with a Trusted Signing account. |
350-
| `trustedsigning certificate-profile show -g MyResourceGroup --account-name MyAccount -n MyProfile` | Gets the details for a certificate profile. |
348+
| `az trustedsigning certificate-profile create -–help` | Shows help for sample commands, and shows detailed parameter descriptions. |
349+
| `az trustedsigning certificate-profile list -g MyResourceGroup --account-name MyAccount` | Lists all certificate profiles that are associated with a Trusted Signing account. |
350+
| `az trustedsigning certificate-profile show -g MyResourceGroup --account-name MyAccount -n MyProfile` | Gets the details for a certificate profile. |
351351

352352
---
353353

@@ -386,7 +386,7 @@ To delete Trusted Signing resources by using the Azure CLI:
386386
To delete a Trusted Signing certificate profile, run this command:
387387

388388
```azurecli
389-
trustedsigning certificate-profile delete -g MyResourceGroup --account-name MyAccount -n MyProfile
389+
az trustedsigning certificate-profile delete -g MyResourceGroup --account-name MyAccount -n MyProfile
390390
```
391391

392392
> [!NOTE]
@@ -399,7 +399,7 @@ You can use the Azure CLI to delete Trusted Signing resources.
399399
To delete a Trusted Signing account, run this command:
400400

401401
```azurecli
402-
trustedsigning delete -n MyAccount -g MyResourceGroup
402+
az trustedsigning delete -n MyAccount -g MyResourceGroup
403403
```
404404

405405
> [!NOTE]
@@ -414,3 +414,7 @@ In this quickstart, you created a Trusted Signing account, an identity validatio
414414
- Learn more about [signing integrations](how-to-signing-integrations.md).
415415
- Learn more about the [trust models that Trusted Signing supports](concept-trusted-signing-trust-models.md).
416416
- Learn more about [certificate management](concept-trusted-signing-cert-management.md).
417+
- Need assistance with your setup:
418+
- Reach out via Azure Support through Azure portal.
419+
- Post your query on Stack Overflow or Microsoft Q&A, use the tag: trusted-signing.
420+
- Identity Validation issues can only be addressed with Stack Overflow or Microsoft Q&A.

0 commit comments

Comments
 (0)