How to create a CSR using Google Cloud KMS?

Viewed 595

I want to use Google Cloud KMS for asymmetric signing. To complete setup with the destination provider I need to send them a CSR signed with the private key stored in Google. I've found some examples of doing this using Java or Go but I don't need to do it programatically and I don't know those languages anyway. Ideally I'm looking for something command line based using the SDK.

1 Answers

I gave up doing it this way and generated the private key and CSR on a local trusted machine then imported it into Google.

Related