I am using the databricks UI on azure to connect to Snowflake. We are trying to use the PEM key option but I get the following error
summary: IllegalArgumentException: Input PEM private key is invalid, data: {“type”:”baseError”,”stackFrames”:
We generally us the following command to generate keys and then encrypt them using a password but since databricks doesnt have an input filed for the password we generated the key without encryption.
openssl genrsa 2048 | openssl pkcs8 -topk8 -inform PEM -out privatekey.p8 -nocrypt
The UI calls for a PEM private key in HEX64 which I dont know how to generate. Any help would be greatly appreciated!
2