@heroku-cli/plugin-trusted-endpointsdeprecated

Heroku Trusted VPC Endpoints CLI

Usage no npm install needed!

<script type="module">
  import herokuCliPluginTrustedEndpoints from 'https://cdn.skypack.dev/@heroku-cli/plugin-trusted-endpoints';
</script>

README

heroku-endpoints-cli

heroku endpoints CLI

oclif Version Downloads/week License

Usage

$ npm install -g @heroku-cli/plugin-trusted-endpoints
$ heroku COMMAND
running command...
$ heroku (-v|--version|version)
@heroku-cli/plugin-trusted-endpoints/0.4.1 darwin-x64 node-v10.14.0
$ heroku --help [COMMAND]
USAGE
  $ heroku COMMAND
...

Commands

heroku endpoints [DATABASE]

list all your Trusted VPC Endpoints

USAGE
  $ heroku endpoints [DATABASE]

OPTIONS
  -a, --app=app  (required) app to run command against

EXAMPLE
  $ heroku endpoints

See code: src/commands/endpoints/index.ts

heroku endpoints:access [DATABASE]

list all accounts for your Trusted VPC Endpoint's whitelist

USAGE
  $ heroku endpoints:access [DATABASE]

OPTIONS
  -a, --app=app  (required) app to run command against

EXAMPLE
  $ heroku endpoints:access postgresql-rigid-37567

See code: src/commands/endpoints/access/index.ts

heroku endpoints:access:add [DATABASE]

add an account to your Trusted VPC Endpoints's whitelist

USAGE
  $ heroku endpoints:access:add [DATABASE]

OPTIONS
  -a, --app=app              (required) app to run command against
  --account-ids=account-ids  (required)

EXAMPLES
  $ heroku endpoints:access:add postgresql-rigid-37567 --account_ids 123456
  $ heroku endpoints:access:add postgresql-rigid-37567 --account_ids 123456,78910

See code: src/commands/endpoints/access/add.ts

heroku endpoints:access:remove [DATABASE]

remove an account from your Trusted VPC Endpoint's whitelist

USAGE
  $ heroku endpoints:access:remove [DATABASE]

OPTIONS
  -a, --app=app              (required) app to run command against
  --account-ids=account-ids  (required)

EXAMPLE
  $ heroku endpoints:access:remove --account_ids arn:aws:iam::12345678910:root

See code: src/commands/endpoints/access/remove.ts

heroku endpoints:create [DATABASE]

create a new Trusted VPC Endpoint for your database

USAGE
  $ heroku endpoints:create [DATABASE]

OPTIONS
  -a, --app=app              (required) app to run command against
  --account-ids=account-ids  (required)

EXAMPLE
  $ heroku endpoints:create

See code: src/commands/endpoints/create.ts

heroku endpoints:destroy [DATABASE]

destroy a Trusted VPC Endpoint for your database

USAGE
  $ heroku endpoints:destroy [DATABASE]

OPTIONS
  -a, --app=app  (required) app to run command against

EXAMPLE
  $ heroku endpoints:destroy

See code: src/commands/endpoints/destroy.ts

heroku endpoints:wait [DATABASE]

wait for your Trusted VPC Endpoint to be provisioned

USAGE
  $ heroku endpoints:wait [DATABASE]

OPTIONS
  -a, --app=app  (required) app to run command against

EXAMPLE
  $ heroku endpoints:wait

See code: src/commands/endpoints/wait.ts