I'm trying to setup google cloud load balancer for SSL using a certificate (PositiveSSL) that I generated via a certificate authority.
Via the google cloud shell, here is how I generated the key:
openssl genrsa -out my-key.key 2048
And here is how I generated the CSR (certificate signing request):
openssl req -new -key my-key.key -out my-csr.csr
I then used the CSR to obtain the SSL cert from the certificate authority, and I received the following two files:
All tolled, I have the following four files:
The image shown below is the form for creating an SSL cert in Google Cloud Load Balancer:
Can you please direct me as to what information goes where (from the files I have at my disposal). I don't have any files that are in .pem
format.
my-crt.crt is the public key certificate
my-key.key is the private key to your certificate
my-ca-bundle.ca-bundle is your certificate chain
Open those files up, copy and paste the content to the form.
This is described in GCP documentation on "Creating and Using SSL Certificates" under the section "Creating an SSL certificate resource from existing certificate files" as per the doc