@storm-software/terraform-tools 0.60.32 → 0.60.34
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 +14 -0
- package/README.md +1 -1
- package/dist/{chunk-LWTKJZRO.mjs → chunk-23BXWJ3V.mjs} +1 -1
- package/dist/{chunk-UDVVYY5D.js → chunk-2OZJA2TG.js} +3 -3
- package/dist/{chunk-H7Y2LFV3.mjs → chunk-4CMT55YE.mjs} +1 -1
- package/dist/{chunk-S73JSUW4.mjs → chunk-5OONAEMF.mjs} +3 -3
- package/dist/{chunk-KE7OE54O.js → chunk-6CIGNGYJ.js} +2 -2
- package/dist/{chunk-CDGU2D3C.js → chunk-CFVE4L4K.js} +2 -2
- package/dist/{chunk-HTZKEVO3.js → chunk-D6DGSBV2.js} +2 -2
- package/dist/{chunk-7ZB35C75.js → chunk-EHLDIFOY.js} +2 -2
- package/dist/{chunk-ER4NKE5L.js → chunk-EOBH3KRZ.js} +106 -106
- package/dist/{chunk-CJWRZC26.js → chunk-GC3CVBMQ.js} +2 -2
- package/dist/{chunk-PPFWOOJC.mjs → chunk-JLI2GIMJ.mjs} +1 -1
- package/dist/{chunk-R4W7LWPZ.mjs → chunk-N2JYMGM6.mjs} +1 -1
- package/dist/{chunk-M2N3IAIA.mjs → chunk-SH2NUO4D.mjs} +1 -1
- package/dist/{chunk-4XIS7YDK.mjs → chunk-SNDH6H37.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 +8 -8
- package/dist/index.mjs +7 -7
- 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 +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,20 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Terraform Tools
|
|
4
4
|
|
|
5
|
+
## [0.60.33](https://github.com/storm-software/storm-ops/releases/tag/terraform-tools%400.60.33) (2025-06-29)
|
|
6
|
+
|
|
7
|
+
### Miscellaneous
|
|
8
|
+
|
|
9
|
+
- **monorepo:** Regenerate README markdown files
|
|
10
|
+
([0d0461a4d](https://github.com/storm-software/storm-ops/commit/0d0461a4d))
|
|
11
|
+
|
|
12
|
+
## [0.60.32](https://github.com/storm-software/storm-ops/releases/tag/terraform-tools%400.60.32) (2025-06-27)
|
|
13
|
+
|
|
14
|
+
### Miscellaneous
|
|
15
|
+
|
|
16
|
+
- **monorepo:** Regenerated README markdown files
|
|
17
|
+
([e86c0228b](https://github.com/storm-software/storm-ops/commit/e86c0228b))
|
|
18
|
+
|
|
5
19
|
## [0.60.31](https://github.com/storm-software/storm-ops/releases/tag/terraform-tools%400.60.31) (2025-06-27)
|
|
6
20
|
|
|
7
21
|
### 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 -->
|
|
@@ -792,7 +792,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.info, ()
|
|
|
792
792
|
return (message) => {
|
|
793
793
|
console.debug(
|
|
794
794
|
`
|
|
795
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
795
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex("#3e9eff")(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
796
796
|
`
|
|
797
797
|
);
|
|
798
798
|
};
|
|
@@ -801,7 +801,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.brand, ()
|
|
|
801
801
|
return (message) => {
|
|
802
802
|
console.debug(
|
|
803
803
|
`
|
|
804
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
804
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex("#0070E0")(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
805
805
|
`
|
|
806
806
|
);
|
|
807
807
|
};
|
|
@@ -809,7 +809,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.brand, ()
|
|
|
809
809
|
return (message) => {
|
|
810
810
|
console.log(
|
|
811
811
|
`
|
|
812
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
812
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex("#0356a8")(`[${CONSOLE_ICONS[LogLevelLabel.ALL]} System] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
813
813
|
`
|
|
814
814
|
);
|
|
815
815
|
};
|
|
@@ -792,7 +792,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.info ?? "#58a6ff")(`[${CON
|
|
|
792
792
|
return (message) => {
|
|
793
793
|
console.debug(
|
|
794
794
|
`
|
|
795
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
795
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex("#3e9eff")(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
796
796
|
`
|
|
797
797
|
);
|
|
798
798
|
};
|
|
@@ -801,7 +801,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.brand ?? "#1fb2a6")(`[${CO
|
|
|
801
801
|
return (message) => {
|
|
802
802
|
console.debug(
|
|
803
803
|
`
|
|
804
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
804
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex("#0070E0")(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
805
805
|
`
|
|
806
806
|
);
|
|
807
807
|
};
|
|
@@ -809,7 +809,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.brand ?? "#1fb2a6")(`[${CO
|
|
|
809
809
|
return (message) => {
|
|
810
810
|
console.log(
|
|
811
811
|
`
|
|
812
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
812
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex("#0356a8")(`[${CONSOLE_ICONS[LogLevelLabel.ALL]} System] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
813
813
|
`
|
|
814
814
|
);
|
|
815
815
|
};
|
|
@@ -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 _chunk2OZJA2TGjs = require('./chunk-2OZJA2TG.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 _chunk2OZJA2TGjs.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 _chunk6CIGNGYJjs = require('./chunk-6CIGNGYJ.js');
|
|
4
4
|
|
|
5
5
|
// src/executors/plan/executor.ts
|
|
6
|
-
var executor_default =
|
|
6
|
+
var executor_default = _chunk6CIGNGYJjs.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 _chunk6CIGNGYJjs = require('./chunk-6CIGNGYJ.js');
|
|
4
4
|
|
|
5
5
|
// src/executors/output/executor.ts
|
|
6
|
-
var executor_default =
|
|
6
|
+
var executor_default = _chunk6CIGNGYJjs.withTerraformExecutor.call(void 0, "output");
|
|
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 _chunk6CIGNGYJjs = require('./chunk-6CIGNGYJ.js');
|
|
4
4
|
|
|
5
5
|
// src/executors/apply/executor.ts
|
|
6
|
-
var executor_default =
|
|
6
|
+
var executor_default = _chunk6CIGNGYJjs.withTerraformExecutor.call(void 0, "apply");
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|