@govuk-pay/cli 0.0.70 → 0.0.72

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@govuk-pay/cli",
3
- "version": "0.0.70",
3
+ "version": "0.0.72",
4
4
  "description": "GOV.UK Pay Command Line Interface",
5
5
  "bin": {
6
6
  "pay": "bin/cli.js",
@@ -11,6 +11,6 @@ exports.DEV_CONFIG = {
11
11
  'github-access-token': 'alphagov-pay-ci-concourse/github.com-concourse-github-personal-access-token'
12
12
  },
13
13
  logging_pipeline: {
14
- splunk_hec_token: 'splunk-dev/govuk_pay_dev'
14
+ splunk_hec_token: 'splunk/firehose-hec-token'
15
15
  }
16
16
  };
@@ -416,8 +416,8 @@ async function printHowToTunnelText(application, environment, dbEngineVersion, d
416
416
  printGreen(`\nConnected tunnel to ${application} RDS database in ${environment} on port 65432\n`);
417
417
  printGreen('Copy DB credentials to clipboard (in another window) using pay-low-pass:');
418
418
  printGreen(` pay-low-pass ${payLowPassDbSecretName} | pbcopy`);
419
- printGreen('Alternatively, fetch credentials from pay secrets:');
420
- printGreen(` pay secrets fetch ${environment} ${application} ${paySecretsPasswordName} | pbcopy`);
419
+ printGreen('Alternatively, fetch credentials from AWS Parameter Store using pay secrets:');
420
+ printGreen(` pay secrets fetch --use-ssm ${environment} ${application} ${paySecretsPasswordName} | pbcopy`);
421
421
  printGreen('Open psql with:');
422
422
  printGreen(` psql -h 127.0.0.1 -p 65432 -U ${dbUser} -d ${application}`);
423
423
  printGreen('Alternatively connect using docker instead of needing psql installed locally and set the password automatically using pay-low-pass:');