Reputation: 1239
Is there any limitation in importing pkcs12 into Azure key vault, basically I need to import a root CA cert, intermediate CA cert and a leaf cert and its private key in a single file. Is this possible with Azure key vault?
Upvotes: 0
Views: 2362
Reputation: 552
In Azure KeyVault, certificates can be imported in either PFX or PEM format, so the formats you mentioned won't work unless you convert them to PEM or PFX.
Here are some instructions for how to do that.
See more information about importing KeyVault certificates here.
Upvotes: 1