Complete the code to create a managed SSL certificate resource in GCP.
gcloud compute ssl-certificates create my-ssl-cert --[1]=example.comThe domains flag specifies the domain names for the managed SSL certificate.
Complete the code to list all SSL certificates in your GCP project.
gcloud compute ssl-certificates [1]The list command shows all SSL certificates in the project.
Fix the error in the command to delete an SSL certificate named 'old-cert'.
gcloud compute ssl-certificates [1] old-certThe correct command to delete a certificate is delete.
Fill both blanks to create a self-managed SSL certificate with a certificate file and private key file.
gcloud compute ssl-certificates create my-self-managed-cert --certificate=[1] --[2]=my-key.pem
The --certificate flag takes the certificate file, and --key flag takes the private key file.
Fill all three blanks to describe an SSL certificate named 'my-cert' in detail.
gcloud compute ssl-certificates [1] my-cert --[2] json --format=[3]
Use describe to get details, --format to specify output format, and json for JSON format.