Hi Nick,
To add your Trusted Signature to your Azure Key Vault, you can follow these steps:
- Create a Certificate Signing Request (CSR): This is a message sent to a Certificate Authority (CA) to request a digital certificate.
- Sign the CSR: Have your CA sign the CSR.
- Merge the Signed Request: Import the signed certificate back into your Azure Key Vault.
Here's a more detailed guide:
1.Generate a CSR in Azure Key Vault:
- Go to your Key Vault in the Azure portal.
- Select Certificates and then Generate/Import.
- Choose Generate as the method of certificate creation.
- Fill in the required details like Certificate Name, Type of Certificate Authority (CA), and Subject.
- Click Create to generate the CSR.
2.Sign the CSR with your CA:
- Download the CSR file from Azure Key Vault
- Submit the CSR to your CA for signing
3.Merge the Signed Certificate:
- Once the CA returns the signed certificate, upload it back to Azure Key Vault.
- Go to the Certificates section in your Key Vault.
- Select the certificate and click on Merge Signed Request to complete the process.
See azure documentation https://learn.microsoft.com/en-us/azure/key-vault/certificates/create-certificate-signing-request?tabs=azure-portal