You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is no equivalent of these commands. The openssl_pkcs12 module can dump the private key, certificate, and CA certs into a single file, which comes close to what you want.
what are the output format of azure_rm_keyvaultkey_info and azure_rm_keyvaultsecret_info when retrieving certificate from Azure keyvault ? how to convert to PEM format ?
for azure_rm_keyvaultkey_info, I get its output['keys'][0].key
for azure_rm_keyvaultsecret_info, I get its output.secrets[0].secret
what are equivalent ansible module for achieve these command ?
openssl pkcs12 -in $file -nocerts -nodes -out $certKey
openssl pkcs12 -in $file -clcerts -nokeys -out $certPem
I've looked on openssl_privatekey, openssl_privatekey_info, openssl_pkcs12, openssl_privatekey_info, none of them can
The text was updated successfully, but these errors were encountered: