user3740951
user3740951

Reputation: 1239

Azure key vault: import pkcs12

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

Answers (1)

Bruno Justino Praciano
Bruno Justino Praciano

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

Related Questions