gcloud_alpha_app_ssl-certificates_create (1)
NAME
- gcloud alpha app ssl-certificates create - uploads a new SSL certificate
SYNOPSIS
-
gcloud alpha app ssl-certificates create --certificate=LOCAL_FILE_PATH --display-name=DISPLAY_NAME --private-key=LOCAL_FILE_PATH [GCLOUD_WIDE_FLAG ...]
DESCRIPTION
(ALPHA) The user must be the verified owner of the certificate domain(s).
REQUIRED FLAGS
-
- --certificate=LOCAL_FILE_PATH
-
The file path for the new certificate to upload. Must be in PEM x.509 format
including the header and footer.
- --display-name=DISPLAY_NAME
-
A display name for this certificate.
- --private-key=LOCAL_FILE_PATH
-
The file path to a local RSA private key file. The private key must be PEM
encoded with header and footer and must be 2048 bits or fewer.
GCLOUD WIDE FLAGS
These flags are available to all commands: --account, --configuration, --flags-file, --flatten, --format, --help, --log-http, --project, --quiet, --trace-token, --user-output-enabled, --verbosity. Run $ gcloud help for details.
EXAMPLES
To add a new SSL certificate to App Engine, run:
-
$ gcloud alpha app ssl-certificates create \
--display-name='example cert' \
--certificate='/home/user/me/my_cert.cer' \
--private-key='/home/user/me/my_key.pfx'
NOTES
This command is currently in ALPHA and may change without notice. If this command fails with API permission errors despite specifying the right project, you will have to apply for early access and have your projects registered on the API whitelist to use it. To do so, contact Support at cloud.google.com/support These variants are also available:
- $ gcloud app ssl-certificates create $ gcloud beta app ssl-certificates create