Reputation: 2327
I need to put an RSA private key into the Azure Key Vault.
I can upload it to "Secrets", but when I do this, I am warned the functionality is deprecated and I am advised to go to the "Certificates" section.
However, no matter what I've done (or tried to do -- usually with openssl) to the text file containing my RSA private yet, the Key Vault refuses to accept it.
Is it possible? Does anyone know the correct and exact procedure to make it so?
Upvotes: 1
Views: 2231
Reputation: 2275
Please check the algorithm that you're using for the certificate. If it doesn't work then you can always use a secret with no problem.
https://learn.microsoft.com/en-us/azure/key-vault/keys/about-keys-details#rsa-algorithms
Upvotes: 1