@agilecustoms/envctl 1.10.2 → 1.10.3

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.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +3 -3
package/dist/index.js CHANGED
@@ -16,7 +16,7 @@ program
16
16
  .name('envctl')
17
17
  .description('CLI to manage environments')
18
18
  .version(pkg.version)
19
- .option('-v, --verbose', 'Verbose output (w/ debug logs)');
19
+ .option('--verbose', 'Verbose output (w/ debug logs)');
20
20
  configure(program, configService);
21
21
  createEphemeral(program, envService);
22
22
  deleteIt(program, envService);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agilecustoms/envctl",
3
- "version": "1.10.2",
3
+ "version": "1.10.3",
4
4
  "description": "node.js CLI client for manage environments",
5
5
  "keywords": [
6
6
  "terraform wrapper",
@@ -42,7 +42,7 @@
42
42
  "run-configure": "npm run it -- configure",
43
43
  "~": "",
44
44
  "run-core-init": " cd ../tt-core && terraform init -upgrade -backend-config=key=laxa1986 -reconfigure",
45
- "run-core-status": " CWD=../tt-core npm run it -- status -v",
45
+ "run-core-status": " CWD=../tt-core npm run it -- status --verbose",
46
46
  "run-core-plan": " CWD=../tt-core npm run it -- plan -out=.terraform/plan",
47
47
  "run-core-deployp": "CWD=../tt-core npm run it -- deploy .terraform/plan",
48
48
  "run-core-deploy": " CWD=../tt-core npm run it -- deploy -var=\"env_size=min\"",
@@ -53,7 +53,7 @@
53
53
  "run-init": "cd ../tt-gitops && terraform init -upgrade -backend-config=key=laxa1986 -reconfigure",
54
54
  "run-status": " CWD=../tt-gitops npm run it -- status",
55
55
  "run-plan": " AWS_PROFILE=ac-tt-dev-deployer CWD=../tt-gitops npm run it -- plan -var=\"env_size=min\" -var-file=versions.tfvars",
56
- "run-deploy": " AWS_PROFILE=ac-tt-dev-deployer CWD=../tt-gitops npm run it -- deploy -var=\"env_size=min\" -var-file=versions.tfvars",
56
+ "run-deploy": " AWS_PROFILE=ac-tt-dev-deployer CWD=../tt-gitops npm run it -- deploy -var-file=versions.tfvars",
57
57
  "run-delete": " CWD=../tt-gitops npm run it -- delete",
58
58
  "run-destroy": "AWS_PROFILE=ac-tt-dev-destroyer CWD=../tt-gitops npm run it -- destroy -var=\"env_size=min\" -var-file=versions.tfvars",
59
59
  "-": "",