terruvim-cli 0.1.2 → 0.1.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.
- package/README.md +4 -4
- package/dist/commands/up.js +1 -1
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -20,7 +20,7 @@ $ npm install -g terruvim-cli
|
|
|
20
20
|
$ terruvim COMMAND
|
|
21
21
|
running command...
|
|
22
22
|
$ terruvim (--version)
|
|
23
|
-
terruvim-cli/0.1.
|
|
23
|
+
terruvim-cli/0.1.3 linux-x64 node-v24.13.0
|
|
24
24
|
$ terruvim --help [COMMAND]
|
|
25
25
|
USAGE
|
|
26
26
|
$ terruvim COMMAND
|
|
@@ -62,7 +62,7 @@ DESCRIPTION
|
|
|
62
62
|
Scaffold a new Terruvim project via Interactive Wizard
|
|
63
63
|
```
|
|
64
64
|
|
|
65
|
-
_See code: [src/commands/create.ts](https://github.com/vlad-vorobei/terruvim-cli/blob/v0.1.
|
|
65
|
+
_See code: [src/commands/create.ts](https://github.com/vlad-vorobei/terruvim-cli/blob/v0.1.3/src/commands/create.ts)_
|
|
66
66
|
|
|
67
67
|
## `terruvim help [COMMAND]`
|
|
68
68
|
|
|
@@ -386,7 +386,7 @@ DESCRIPTION
|
|
|
386
386
|
Initialize Pulumi stacks based on environment configs
|
|
387
387
|
```
|
|
388
388
|
|
|
389
|
-
_See code: [src/commands/setup.ts](https://github.com/vlad-vorobei/terruvim-cli/blob/v0.1.
|
|
389
|
+
_See code: [src/commands/setup.ts](https://github.com/vlad-vorobei/terruvim-cli/blob/v0.1.3/src/commands/setup.ts)_
|
|
390
390
|
|
|
391
391
|
## `terruvim up`
|
|
392
392
|
|
|
@@ -400,5 +400,5 @@ DESCRIPTION
|
|
|
400
400
|
Deploy Terruvim infrastructure (Auto-bootstrapping secrets)
|
|
401
401
|
```
|
|
402
402
|
|
|
403
|
-
_See code: [src/commands/up.ts](https://github.com/vlad-vorobei/terruvim-cli/blob/v0.1.
|
|
403
|
+
_See code: [src/commands/up.ts](https://github.com/vlad-vorobei/terruvim-cli/blob/v0.1.3/src/commands/up.ts)_
|
|
404
404
|
<!-- commandsstop -->
|
package/dist/commands/up.js
CHANGED
|
@@ -25,7 +25,7 @@ export default class Up extends Command {
|
|
|
25
25
|
const resourcesPath = path.join(projectDir, 'envs', 'resources.json');
|
|
26
26
|
const infrastructurePath = path.join(projectDir, 'envs', `infrastructure.${env}.json`);
|
|
27
27
|
// const secretId = `${projectName}/${env}/global-secret-base`; // TODO: Implement envs
|
|
28
|
-
const secretId = `${projectName}/global-
|
|
28
|
+
const secretId = `${projectName}/global-secrets-base`;
|
|
29
29
|
const awsSpinner = ora(`Checking AWS Secret Manager: ${secretId}...`).start();
|
|
30
30
|
let secretExists = false;
|
|
31
31
|
try {
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "terruvim-cli",
|
|
3
3
|
"description": "CLI tool to scaffold and deploy Terruvim infrastructure on AWS using Pulumi",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.3",
|
|
5
5
|
"author": "Vlad Vorobei <vladyslavvorobei@gmail.com>",
|
|
6
6
|
"bin": {
|
|
7
7
|
"terruvim-cli": "./bin/run.js"
|