@storm-software/terraform-tools 0.60.18 → 0.60.20
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/CHANGELOG.md +12 -0
- package/README.md +1 -1
- package/dist/{chunk-CTX4RJC2.mjs → chunk-6CUSDD6H.mjs} +6 -1
- package/dist/{chunk-AS2B5GS7.js → chunk-B4CF2SUI.js} +2 -2
- package/dist/{chunk-K5VRWNMP.js → chunk-EKJUYTCC.js} +2 -2
- package/dist/{chunk-DFS4RHJB.mjs → chunk-FVDHAL26.mjs} +1 -1
- package/dist/{chunk-4B5XOSWD.js → chunk-GVPB6VDK.js} +2 -2
- package/dist/{chunk-LT5Z4JUG.js → chunk-IRPY3T3M.js} +2 -2
- package/dist/{chunk-Q6WAX2SI.mjs → chunk-IZYR3LIX.mjs} +1 -1
- package/dist/{chunk-EE3AHVP3.js → chunk-M2VQMNHE.js} +2 -2
- package/dist/{chunk-PXFXKNOL.mjs → chunk-Q5IZO3CM.mjs} +1 -1
- package/dist/{chunk-TXPXSBY4.js → chunk-T44LGI4Q.js} +106 -106
- package/dist/{chunk-NSR5VU3N.mjs → chunk-TH42KVVI.mjs} +1 -1
- package/dist/{chunk-27OX2IVB.js → chunk-U62DYW3V.js} +6 -1
- package/dist/{chunk-QNJTHB5H.mjs → chunk-XPFIRYW2.mjs} +1 -1
- package/dist/{chunk-27LFUIUZ.mjs → chunk-YOTJXBSJ.mjs} +1 -1
- package/dist/executors.js +6 -6
- package/dist/executors.mjs +6 -6
- package/dist/generators.js +3 -3
- package/dist/generators.mjs +2 -2
- package/dist/index.js +10 -10
- package/dist/index.mjs +9 -9
- package/dist/src/base/index.js +3 -3
- package/dist/src/base/index.mjs +2 -2
- package/dist/src/base/terraform-executor.js +3 -3
- package/dist/src/base/terraform-executor.mjs +2 -2
- package/dist/src/executors/apply/executor.js +4 -4
- package/dist/src/executors/apply/executor.mjs +3 -3
- package/dist/src/executors/destroy/executor.js +4 -4
- package/dist/src/executors/destroy/executor.mjs +3 -3
- package/dist/src/executors/output/executor.js +4 -4
- package/dist/src/executors/output/executor.mjs +3 -3
- package/dist/src/executors/plan/executor.js +4 -4
- package/dist/src/executors/plan/executor.mjs +3 -3
- package/dist/src/generators/init/init.js +3 -3
- package/dist/src/generators/init/init.mjs +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Terraform Tools
|
|
4
4
|
|
|
5
|
+
## [0.60.19](https://github.com/storm-software/storm-ops/releases/tag/terraform-tools%400.60.19) (2025-06-06)
|
|
6
|
+
|
|
7
|
+
### Miscellaneous
|
|
8
|
+
|
|
9
|
+
- **monorepo:** Regenerate README markdown files
|
|
10
|
+
|
|
11
|
+
## [0.60.18](https://github.com/storm-software/storm-ops/releases/tag/terraform-tools%400.60.18) (2025-06-06)
|
|
12
|
+
|
|
13
|
+
### Miscellaneous
|
|
14
|
+
|
|
15
|
+
- **monorepo:** Regenerate README markdown files
|
|
16
|
+
|
|
5
17
|
## [0.60.17](https://github.com/storm-software/storm-ops/releases/tag/terraform-tools%400.60.17) (2025-06-05)
|
|
6
18
|
|
|
7
19
|
### Miscellaneous
|
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
21
21
|
|
|
22
22
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
|
|
23
23
|
|
|
24
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
25
25
|
|
|
26
26
|
<!-- prettier-ignore-start -->
|
|
27
27
|
<!-- markdownlint-disable -->
|
|
@@ -206,6 +206,7 @@ var stormWorkspaceConfigSchema = z.object({
|
|
|
206
206
|
license: z.string().trim().default("Apache-2.0").describe("The license type of the package"),
|
|
207
207
|
homepage: z.string().trim().url().optional().describe("The homepage of the workspace"),
|
|
208
208
|
docs: z.string().trim().url().optional().describe("The documentation site for the workspace"),
|
|
209
|
+
portal: z.string().trim().url().optional().describe("The development portal site for the workspace"),
|
|
209
210
|
licensing: z.string().trim().url().optional().describe("The licensing site for the workspace"),
|
|
210
211
|
contact: z.string().trim().url().optional().describe("The contact site for the workspace"),
|
|
211
212
|
support: z.string().trim().url().optional().describe(
|
|
@@ -1044,6 +1045,7 @@ var getConfigEnv = () => {
|
|
|
1044
1045
|
license: process.env[`${prefix}LICENSE`] || void 0,
|
|
1045
1046
|
homepage: process.env[`${prefix}HOMEPAGE`] || void 0,
|
|
1046
1047
|
docs: process.env[`${prefix}DOCS`] || void 0,
|
|
1048
|
+
portal: process.env[`${prefix}PORTAL`] || void 0,
|
|
1047
1049
|
licensing: process.env[`${prefix}LICENSING`] || void 0,
|
|
1048
1050
|
contact: process.env[`${prefix}CONTACT`] || void 0,
|
|
1049
1051
|
support: process.env[`${prefix}SUPPORT`] || void 0,
|
|
@@ -1259,6 +1261,9 @@ var setConfigEnv = (config) => {
|
|
|
1259
1261
|
if (config.docs) {
|
|
1260
1262
|
process.env[`${prefix}DOCS`] = config.docs;
|
|
1261
1263
|
}
|
|
1264
|
+
if (config.portal) {
|
|
1265
|
+
process.env[`${prefix}PORTAL`] = config.portal;
|
|
1266
|
+
}
|
|
1262
1267
|
if (config.licensing) {
|
|
1263
1268
|
process.env[`${prefix}LICENSING`] = config.licensing;
|
|
1264
1269
|
}
|
|
@@ -1574,7 +1579,7 @@ ${formatLogMessage(config)}`,
|
|
|
1574
1579
|
var getConfig = (workspaceRoot, skipLogs = false) => {
|
|
1575
1580
|
return loadStormWorkspaceConfig(workspaceRoot, skipLogs);
|
|
1576
1581
|
};
|
|
1577
|
-
var getWorkspaceConfig = (skipLogs =
|
|
1582
|
+
var getWorkspaceConfig = (skipLogs = true, options = {}) => {
|
|
1578
1583
|
let workspaceRoot = options.workspaceRoot;
|
|
1579
1584
|
if (!workspaceRoot) {
|
|
1580
1585
|
workspaceRoot = findWorkspaceRoot(options.cwd);
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkEKJUYTCCjs = require('./chunk-EKJUYTCC.js');
|
|
4
4
|
|
|
5
5
|
// src/executors/apply/executor.ts
|
|
6
|
-
var executor_default =
|
|
6
|
+
var executor_default = _chunkEKJUYTCCjs.withTerraformExecutor.call(void 0, "apply");
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _nullishCoalesce(lhs, rhsFn) { if (lhs != null) { return lhs; } else { return rhsFn(); } }
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkU62DYW3Vjs = require('./chunk-U62DYW3V.js');
|
|
4
4
|
|
|
5
5
|
// ../config-tools/src/utilities/run.ts
|
|
6
6
|
var _child_process = require('child_process');
|
|
@@ -24,7 +24,7 @@ var run = (config, command, cwd = _nullishCoalesce(config.workspaceRoot, () => (
|
|
|
24
24
|
// src/base/terraform-executor.ts
|
|
25
25
|
var _shelljs = require('shelljs');
|
|
26
26
|
var withTerraformExecutor = (command, executorOptions = {}) => async (_options, context) => {
|
|
27
|
-
return
|
|
27
|
+
return _chunkU62DYW3Vjs.withRunExecutor.call(void 0,
|
|
28
28
|
`Terraform \`${command}\` Command Executor`,
|
|
29
29
|
async (options, context2, config) => {
|
|
30
30
|
if (!_shelljs.which.call(void 0, "tofu") || !_shelljs.which.call(void 0, "terraform")) {
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkEKJUYTCCjs = require('./chunk-EKJUYTCC.js');
|
|
4
4
|
|
|
5
5
|
// src/executors/destroy/executor.ts
|
|
6
|
-
var executor_default =
|
|
6
|
+
var executor_default = _chunkEKJUYTCCjs.withTerraformExecutor.call(void 0, "destroy");
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkEKJUYTCCjs = require('./chunk-EKJUYTCC.js');
|
|
4
4
|
|
|
5
5
|
// src/executors/plan/executor.ts
|
|
6
|
-
var executor_default =
|
|
6
|
+
var executor_default = _chunkEKJUYTCCjs.withTerraformExecutor.call(void 0, "plan");
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkEKJUYTCCjs = require('./chunk-EKJUYTCC.js');
|
|
4
4
|
|
|
5
5
|
// src/executors/output/executor.ts
|
|
6
|
-
var executor_default =
|
|
6
|
+
var executor_default = _chunkEKJUYTCCjs.withTerraformExecutor.call(void 0, "output");
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|