Socket
Socket
Sign inDemoInstall

@heroku-cli/plugin-certs-v5

Package Overview
Dependencies
112
Maintainers
50
Versions
97
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 8.11.0 to 8.11.1-beta.6

2

oclif.manifest.json
{
"version": "8.11.0",
"version": "8.11.1-beta.6",
"commands": {

@@ -4,0 +4,0 @@ "certs:add": {

{
"name": "@heroku-cli/plugin-certs-v5",
"description": "heroku ssl plugin",
"version": "8.11.0",
"version": "8.11.1-beta.6",
"author": "Ransom Briggs rbriggs@heroku.com",

@@ -19,7 +19,7 @@ "bugs": "https://github.com/heroku/cli/issues",

"@heroku-cli/color": "^1.1.14",
"@heroku-cli/notifications": "^1.2.2",
"@heroku-cli/notifications": "^1.2.4",
"date-fns": "^1.29.0",
"heroku-cli-util": "^8.0.11",
"inquirer": "^6.2.2",
"lodash": "^4.17.13",
"lodash": "^4.17.21",
"psl": "^1.1.29"

@@ -69,3 +69,3 @@ },

},
"gitHead": "a525d5e5b02976efbc51ff2c8b223085b89aa5ac"
"gitHead": "363d6f0bebaa64c9647902443b987925c1a7124f"
}

@@ -1,3 +0,2 @@

heroku-certs
===========
# heroku-certs

@@ -9,15 +8,16 @@ [![Build Status](https://travis-ci.org/heroku/heroku-certs.svg?branch=master)](https://travis-ci.org/heroku/heroku-certs)

<!-- commands -->
* [`heroku certs`](#heroku-certs)
* [`heroku certs:add CRT KEY`](#heroku-certsadd-crt-key)
* [`heroku certs:auto`](#heroku-certsauto)
* [`heroku certs:auto:disable`](#heroku-certsautodisable)
* [`heroku certs:auto:enable`](#heroku-certsautoenable)
* [`heroku certs:auto:refresh`](#heroku-certsautorefresh)
* [`heroku certs:chain`](#heroku-certschain)
* [`heroku certs:generate DOMAIN`](#heroku-certsgenerate-domain)
* [`heroku certs:info`](#heroku-certsinfo)
* [`heroku certs:key`](#heroku-certskey)
* [`heroku certs:remove`](#heroku-certsremove)
* [`heroku certs:update CRT KEY`](#heroku-certsupdate-crt-key)
- [`heroku certs`](#heroku-certs)
- [`heroku certs:add [CRT] [KEY]`](#heroku-certsadd-crt-key)
- [`heroku certs:auto`](#heroku-certsauto)
- [`heroku certs:auto:disable`](#heroku-certsautodisable)
- [`heroku certs:auto:enable`](#heroku-certsautoenable)
- [`heroku certs:auto:refresh`](#heroku-certsautorefresh)
- [`heroku certs:chain`](#heroku-certschain)
- [`heroku certs:generate [DOMAIN]`](#heroku-certsgenerate-domain)
- [`heroku certs:info`](#heroku-certsinfo)
- [`heroku certs:key`](#heroku-certskey)
- [`heroku certs:remove`](#heroku-certsremove)
- [`heroku certs:update [CRT] [KEY]`](#heroku-certsupdate-crt-key)
## `heroku certs`

@@ -29,8 +29,4 @@

USAGE
$ heroku certs -a <value> [-r <value>]
$ heroku certs
FLAGS
-a, --app=<value> (required) app to run command against
-r, --remote=<value> git remote of app to use
DESCRIPTION

@@ -40,5 +36,5 @@ list SSL certificates for an app

_See code: [commands/certs/index.js](https://github.com/heroku/cli/blob/v8.11.0/packages/certs-v5/commands/certs/index.js)_
_See code: [commands/certs/index.js](https://github.com/heroku/cli/blob/v8.11.1-beta.6/packages/certs-v5/commands/certs/index.js)_
## `heroku certs:add CRT KEY`
## `heroku certs:add [CRT] [KEY]`

@@ -49,12 +45,9 @@ add an SSL certificate to an app

USAGE
$ heroku certs:add CRT KEY -a <value> [--bypass] [-r <value>]
$ heroku certs:add [CRT] [KEY] [--0]
FLAGS
-a, --app=<value> (required) app to run command against
-r, --remote=<value> git remote of app to use
--bypass bypass the trust chain completion step
--0 bypass the trust chain completion step
DESCRIPTION
add an SSL certificate to an app
Note: certificates with PEM encoding are also valid

@@ -67,3 +60,3 @@ EXAMPLES

_See code: [commands/certs/add.js](https://github.com/heroku/cli/blob/v8.11.0/packages/certs-v5/commands/certs/add.js)_
_See code: [commands/certs/add.js](https://github.com/heroku/cli/blob/v8.11.1-beta.6/packages/certs-v5/commands/certs/add.js)_

@@ -76,8 +69,6 @@ ## `heroku certs:auto`

USAGE
$ heroku certs:auto -a <value> [--wait] [-r <value>]
$ heroku certs:auto [--0]
FLAGS
-a, --app=<value> (required) app to run command against
-r, --remote=<value> git remote of app to use
--wait watch ACM status and display the status when complete
--0 watch ACM status and display the status when complete

@@ -88,3 +79,3 @@ DESCRIPTION

_See code: [commands/certs/auto/index.js](https://github.com/heroku/cli/blob/v8.11.0/packages/certs-v5/commands/certs/auto/index.js)_
_See code: [commands/certs/auto/index.js](https://github.com/heroku/cli/blob/v8.11.1-beta.6/packages/certs-v5/commands/certs/auto/index.js)_

@@ -97,8 +88,4 @@ ## `heroku certs:auto:disable`

USAGE
$ heroku certs:auto:disable -a <value> [-r <value>]
$ heroku certs:auto:disable
FLAGS
-a, --app=<value> (required) app to run command against
-r, --remote=<value> git remote of app to use
DESCRIPTION

@@ -108,3 +95,3 @@ disable ACM for an app

_See code: [commands/certs/auto/disable.js](https://github.com/heroku/cli/blob/v8.11.0/packages/certs-v5/commands/certs/auto/disable.js)_
_See code: [commands/certs/auto/disable.js](https://github.com/heroku/cli/blob/v8.11.1-beta.6/packages/certs-v5/commands/certs/auto/disable.js)_

@@ -117,8 +104,6 @@ ## `heroku certs:auto:enable`

USAGE
$ heroku certs:auto:enable -a <value> [--wait] [-r <value>]
$ heroku certs:auto:enable [--0]
FLAGS
-a, --app=<value> (required) app to run command against
-r, --remote=<value> git remote of app to use
--wait watch ACM status and exit when complete
--0 watch ACM status and exit when complete

@@ -129,3 +114,3 @@ DESCRIPTION

_See code: [commands/certs/auto/enable.js](https://github.com/heroku/cli/blob/v8.11.0/packages/certs-v5/commands/certs/auto/enable.js)_
_See code: [commands/certs/auto/enable.js](https://github.com/heroku/cli/blob/v8.11.1-beta.6/packages/certs-v5/commands/certs/auto/enable.js)_

@@ -138,8 +123,4 @@ ## `heroku certs:auto:refresh`

USAGE
$ heroku certs:auto:refresh -a <value> [-r <value>]
$ heroku certs:auto:refresh
FLAGS
-a, --app=<value> (required) app to run command against
-r, --remote=<value> git remote of app to use
DESCRIPTION

@@ -149,3 +130,3 @@ refresh ACM for an app

_See code: [commands/certs/auto/refresh.js](https://github.com/heroku/cli/blob/v8.11.0/packages/certs-v5/commands/certs/auto/refresh.js)_
_See code: [commands/certs/auto/refresh.js](https://github.com/heroku/cli/blob/v8.11.1-beta.6/packages/certs-v5/commands/certs/auto/refresh.js)_

@@ -158,8 +139,4 @@ ## `heroku certs:chain`

USAGE
$ heroku certs:chain -a <value> [-r <value>]
$ heroku certs:chain
FLAGS
-a, --app=<value> (required) app to run command against
-r, --remote=<value> git remote of app to use
DESCRIPTION

@@ -169,5 +146,5 @@ print an ordered & complete chain for a certificate

_See code: [commands/certs/chain.js](https://github.com/heroku/cli/blob/v8.11.0/packages/certs-v5/commands/certs/chain.js)_
_See code: [commands/certs/chain.js](https://github.com/heroku/cli/blob/v8.11.1-beta.6/packages/certs-v5/commands/certs/chain.js)_
## `heroku certs:generate DOMAIN`
## `heroku certs:generate [DOMAIN]`

@@ -178,23 +155,16 @@ generate a key and a CSR or self-signed certificate

USAGE
$ heroku certs:generate DOMAIN -a <value> [--selfsigned] [--keysize <value>] [--owner <value>] [--country <value>]
[--area <value>] [--city <value>] [--subject <value>] [--now] [-r <value>]
$ heroku certs:generate [DOMAIN] [--0] [--1] [--2] [--3] [--4] [--5] [--6] [--7]
FLAGS
-a, --app=<value> (required) app to run command against
-r, --remote=<value> git remote of app to use
--area=<value> sub-country area (state, province, etc.) of owner
--city=<value> city of owner
--country=<value> country of owner, as a two-letter ISO country code
--keysize=<value> RSA key size in bits (default: 2048)
--now do not prompt for any owner information
--owner=<value> name of organization certificate belongs to
--selfsigned generate a self-signed certificate instead of a CSR
--subject=<value> specify entire certificate subject
--0 generate a self-signed certificate instead of a CSR
--1 RSA key size in bits (default: 2048)
--2 name of organization certificate belongs to
--3 country of owner, as a two-letter ISO country code
--4 sub-country area (state, province, etc.) of owner
--5 city of owner
--6 specify entire certificate subject
--7 do not prompt for any owner information
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.

@@ -205,3 +175,3 @@ EXAMPLES

_See code: [commands/certs/generate.js](https://github.com/heroku/cli/blob/v8.11.0/packages/certs-v5/commands/certs/generate.js)_
_See code: [commands/certs/generate.js](https://github.com/heroku/cli/blob/v8.11.1-beta.6/packages/certs-v5/commands/certs/generate.js)_

@@ -214,10 +184,8 @@ ## `heroku certs:info`

USAGE
$ heroku certs:info -a <value> [--name <value>] [--endpoint <value>] [--show-domains] [-r <value>]
$ heroku certs:info [--0] [--1] [--2]
FLAGS
-a, --app=<value> (required) app to run command against
-r, --remote=<value> git remote of app to use
--endpoint=<value> endpoint to check info on
--name=<value> name to check info on
--show-domains show associated domains
--0 name to check info on
--1 endpoint to check info on
--2 show associated domains

@@ -228,3 +196,3 @@ DESCRIPTION

_See code: [commands/certs/info.js](https://github.com/heroku/cli/blob/v8.11.0/packages/certs-v5/commands/certs/info.js)_
_See code: [commands/certs/info.js](https://github.com/heroku/cli/blob/v8.11.1-beta.6/packages/certs-v5/commands/certs/info.js)_

@@ -237,12 +205,6 @@ ## `heroku certs:key`

USAGE
$ heroku certs:key -a <value> [-r <value>]
$ heroku certs:key
FLAGS
-a, --app=<value> (required) app to run command against
-r, --remote=<value> git remote of app to use
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.

@@ -253,3 +215,3 @@ EXAMPLES

_See code: [commands/certs/key.js](https://github.com/heroku/cli/blob/v8.11.0/packages/certs-v5/commands/certs/key.js)_
_See code: [commands/certs/key.js](https://github.com/heroku/cli/blob/v8.11.1-beta.6/packages/certs-v5/commands/certs/key.js)_

@@ -262,9 +224,7 @@ ## `heroku certs:remove`

USAGE
$ heroku certs:remove -a <value> [--name <value>] [--endpoint <value>] [-r <value>]
$ heroku certs:remove [--1] [--2]
FLAGS
-a, --app=<value> (required) app to run command against
-r, --remote=<value> git remote of app to use
--endpoint=<value> endpoint to remove
--name=<value> name to remove
--1 name to remove
--2 endpoint to remove

@@ -275,5 +235,5 @@ DESCRIPTION

_See code: [commands/certs/remove.js](https://github.com/heroku/cli/blob/v8.11.0/packages/certs-v5/commands/certs/remove.js)_
_See code: [commands/certs/remove.js](https://github.com/heroku/cli/blob/v8.11.1-beta.6/packages/certs-v5/commands/certs/remove.js)_
## `heroku certs:update CRT KEY`
## `heroku certs:update [CRT] [KEY]`

@@ -284,14 +244,11 @@ update an SSL certificate on an app

USAGE
$ heroku certs:update CRT KEY -a <value> [--bypass] [--name <value>] [--endpoint <value>] [-r <value>]
$ heroku certs:update [CRT] [KEY] [--0] [--2] [--3]
FLAGS
-a, --app=<value> (required) app to run command against
-r, --remote=<value> git remote of app to use
--bypass bypass the trust chain completion step
--endpoint=<value> endpoint to update
--name=<value> name to update
--0 bypass the trust chain completion step
--2 name to update
--3 endpoint to update
DESCRIPTION
update an SSL certificate on an app
Note: certificates with PEM encoding are also valid

@@ -304,3 +261,4 @@ EXAMPLES

_See code: [commands/certs/update.js](https://github.com/heroku/cli/blob/v8.11.0/packages/certs-v5/commands/certs/update.js)_
_See code: [commands/certs/update.js](https://github.com/heroku/cli/blob/v8.11.1-beta.6/packages/certs-v5/commands/certs/update.js)_
<!-- commandsstop -->
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc