heroku ssl plugin
npm install @heroku-cli/plugin-certs-v5heroku-certs
===========

* heroku certs
* heroku certs:add CRT KEY
* heroku certs:auto
* heroku certs:auto:disable
* heroku certs:auto:enable
* heroku certs:auto:refresh
* heroku certs:chain
* heroku certs:generate DOMAIN
* heroku certs:info
* heroku certs:key
* heroku certs:remove
* heroku certs:update CRT KEY
heroku certslist SSL certificates for an app
``
USAGE
$ heroku certs -a
FLAGS
-a, --app=
-r, --remote=
DESCRIPTION
list SSL certificates for an app
`
_See code: commands/certs/index.js_
add an SSL certificate to an app
`
USAGE
$ heroku certs:add CRT KEY -a
FLAGS
-a, --app=
-r, --remote=
--bypass bypass the trust chain completion step
DESCRIPTION
add an SSL certificate to an app
Note: certificates with PEM encoding are also valid
EXAMPLES
$ heroku certs:add example.com.crt example.com.key
If you require intermediate certificates, refer to this article on merging certificates to get a complete chain:
https://help.salesforce.com/s/articleView?id=000333504&type=1
`
_See code: commands/certs/add.js_
show ACM status for an app
`
USAGE
$ heroku certs:auto -a
FLAGS
-a, --app=
-r, --remote=
--wait watch ACM status and display the status when complete
DESCRIPTION
show ACM status for an app
`
_See code: commands/certs/auto/index.js_
disable ACM for an app
`
USAGE
$ heroku certs:auto:disable -a
FLAGS
-a, --app=
-r, --remote=
DESCRIPTION
disable ACM for an app
`
_See code: commands/certs/auto/disable.js_
enable ACM status for an app
`
USAGE
$ heroku certs:auto:enable -a
FLAGS
-a, --app=
-r, --remote=
--wait watch ACM status and exit when complete
DESCRIPTION
enable ACM status for an app
`
_See code: commands/certs/auto/enable.js_
refresh ACM for an app
`
USAGE
$ heroku certs:auto:refresh -a
FLAGS
-a, --app=
-r, --remote=
DESCRIPTION
refresh ACM for an app
`
_See code: commands/certs/auto/refresh.js_
print an ordered & complete chain for a certificate
`
USAGE
$ heroku certs:chain -a
FLAGS
-a, --app=
-r, --remote=
DESCRIPTION
print an ordered & complete chain for a certificate
`
_See code: commands/certs/chain.js_
generate a key and a CSR or self-signed certificate
``
USAGE
$ heroku certs:generate DOMAIN -a
[--area
FLAGS
-a, --app=
-r, --remote=
--area=
--city=
--country=
--keysize=
--now do not prompt for any owner information
--owner=
--selfsigned generate a self-signed certificate instead of a CSR
--subject=
DESCRIPTION
generate a key and a CSR or self-signed certificate
Generate a key and certificate signing request (or self-signed certificate)
for an app. Prompts for information to put in the certificate unless --now
is used, or at least one of the --subject, --owner, --country, --area, or
--city options is specified.
EXAMPLES
$ heroku certs:generate example.com
`
_See code: commands/certs/generate.js_
show certificate information for an SSL certificate
`
USAGE
$ heroku certs:info -a
FLAGS
-a, --app=
-r, --remote=
--endpoint=
--name=
--show-domains show associated domains
DESCRIPTION
show certificate information for an SSL certificate
`
_See code: commands/certs/info.js_
print the correct key for the given certificate
`
USAGE
$ heroku certs:key -a
FLAGS
-a, --app=
-r, --remote=
DESCRIPTION
print the correct key for the given certificate
You must pass one single certificate, and one or more keys.
The first key that signs the certificate will be printed back.
EXAMPLES
$ heroku certs:key example.com.crt example.com.key
`
_See code: commands/certs/key.js_
remove an SSL certificate from an app
`
USAGE
$ heroku certs:remove -a
FLAGS
-a, --app=
-r, --remote=
--endpoint=
--name=
DESCRIPTION
remove an SSL certificate from an app
`
_See code: commands/certs/remove.js_
update an SSL certificate on an app
`
USAGE
$ heroku certs:update CRT KEY -a
FLAGS
-a, --app=
-r, --remote=
--bypass bypass the trust chain completion step
--endpoint=
--name=
DESCRIPTION
update an SSL certificate on an app
Note: certificates with PEM encoding are also valid
EXAMPLES
$ heroku certs:update example.com.crt example.com.key
If you require intermediate certificates, refer to this article on merging certificates to get a complete chain:
https://help.salesforce.com/s/articleView?id=000333504&type=1
``
_See code: commands/certs/update.js_