@storm-software/terraform-tools 0.66.77 → 0.66.79
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 +21 -0
- package/dist/{chunk-AYLQUJIF.js → chunk-25SEY6TK.js} +19 -2
- package/dist/{chunk-JRIDUPBR.js → chunk-5VNAQK7B.js} +2 -2
- package/dist/{chunk-V3M776FJ.js → chunk-BBOLLBFZ.js} +2 -2
- package/dist/{chunk-7SJWEZZM.mjs → chunk-I53PCL5S.mjs} +1 -1
- package/dist/{chunk-73ALMVL3.js → chunk-LNXYWGAS.js} +2 -2
- package/dist/{chunk-MAO7X2WI.mjs → chunk-NB5PVKFM.mjs} +1 -1
- package/dist/{chunk-O4DPEFXY.mjs → chunk-P5BRQAIT.mjs} +1 -1
- package/dist/{chunk-NVQ66RID.js → chunk-QA42EDAB.js} +2 -2
- package/dist/{chunk-BOIKO2VK.mjs → chunk-RIEYZR2V.mjs} +1 -1
- package/dist/{chunk-ANCKJ3HY.mjs → chunk-SFDYWWEG.mjs} +1 -1
- package/dist/{chunk-EDSOVRQE.js → chunk-TFC7CJJL.js} +157 -157
- package/dist/{chunk-IHBOHQJP.mjs → chunk-TTRVAHUW.mjs} +1 -1
- package/dist/{chunk-GGQWZWZ3.mjs → chunk-TWI5KBOR.mjs} +19 -2
- package/dist/{chunk-BR27SHF4.js → chunk-VLDCT332.js} +2 -2
- 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 +12 -12
- package/dist/index.mjs +11 -11
- 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 +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,27 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Terraform Tools
|
|
4
4
|
|
|
5
|
+
## [0.66.78](https://github.com/storm-software/storm-ops/releases/tag/terraform-tools%400.66.78) (01/14/2026)
|
|
6
|
+
|
|
7
|
+
### Updated Dependencies
|
|
8
|
+
|
|
9
|
+
- Updated **workspace-tools** to **v1.294.22**
|
|
10
|
+
- Updated **config-tools** to **v1.188.76**
|
|
11
|
+
- Updated **config** to **v1.135.0**
|
|
12
|
+
|
|
13
|
+
## [0.66.77](https://github.com/storm-software/storm-ops/releases/tag/terraform-tools%400.66.77) (12/30/2025)
|
|
14
|
+
|
|
15
|
+
### Miscellaneous
|
|
16
|
+
|
|
17
|
+
- **monorepo:** Update `README.md` markdown files
|
|
18
|
+
([eea67b18e](https://github.com/storm-software/storm-ops/commit/eea67b18e))
|
|
19
|
+
|
|
20
|
+
### Updated Dependencies
|
|
21
|
+
|
|
22
|
+
- Updated **workspace-tools** to **v1.294.21**
|
|
23
|
+
- Updated **config-tools** to **v1.188.75**
|
|
24
|
+
- Updated **config** to **v1.134.75**
|
|
25
|
+
|
|
5
26
|
## [0.66.76](https://github.com/storm-software/storm-ops/releases/tag/terraform-tools%400.66.76) (12/23/2025)
|
|
6
27
|
|
|
7
28
|
### Updated Dependencies
|
|
@@ -39,6 +39,7 @@ var DEFAULT_COLOR_CONFIG = {
|
|
|
39
39
|
help: "#5C4EE5",
|
|
40
40
|
success: "#087f5b",
|
|
41
41
|
info: "#0550ae",
|
|
42
|
+
debug: "#8afafc",
|
|
42
43
|
warning: "#e3b341",
|
|
43
44
|
danger: "#D8314A",
|
|
44
45
|
fatal: "#51070f",
|
|
@@ -55,6 +56,7 @@ var DEFAULT_COLOR_CONFIG = {
|
|
|
55
56
|
help: "#818cf8",
|
|
56
57
|
success: "#10b981",
|
|
57
58
|
info: "#58a6ff",
|
|
59
|
+
debug: "#8afafc",
|
|
58
60
|
warning: "#f3d371",
|
|
59
61
|
danger: "#D8314A",
|
|
60
62
|
fatal: "#a40e26",
|
|
@@ -235,7 +237,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.info, ()
|
|
|
235
237
|
return (message) => {
|
|
236
238
|
console.debug(
|
|
237
239
|
`
|
|
238
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.
|
|
240
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.debug, () => ( DEFAULT_COLOR_CONFIG.dark.debug)))(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
239
241
|
`
|
|
240
242
|
);
|
|
241
243
|
};
|
|
@@ -244,7 +246,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.info, ()
|
|
|
244
246
|
return (message) => {
|
|
245
247
|
console.debug(
|
|
246
248
|
`
|
|
247
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
249
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex("#bbbbbb")(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
248
250
|
`
|
|
249
251
|
);
|
|
250
252
|
};
|
|
@@ -698,6 +700,10 @@ var infoColorSchema = z._default(colorSchema, "#38bdf8");
|
|
|
698
700
|
schemaRegistry.add(infoColorSchema, {
|
|
699
701
|
description: "The informational color of the workspace"
|
|
700
702
|
});
|
|
703
|
+
var debugColorSchema = z._default(colorSchema, "#8afafc");
|
|
704
|
+
schemaRegistry.add(debugColorSchema, {
|
|
705
|
+
description: "The debug color of the workspace"
|
|
706
|
+
});
|
|
701
707
|
var warningColorSchema = z._default(colorSchema, "#f3d371");
|
|
702
708
|
schemaRegistry.add(warningColorSchema, {
|
|
703
709
|
description: "The warning color of the workspace"
|
|
@@ -732,6 +738,7 @@ var darkColorsSchema = z.object({
|
|
|
732
738
|
help: helpColorSchema,
|
|
733
739
|
success: successColorSchema,
|
|
734
740
|
info: infoColorSchema,
|
|
741
|
+
debug: debugColorSchema,
|
|
735
742
|
warning: warningColorSchema,
|
|
736
743
|
danger: dangerColorSchema,
|
|
737
744
|
fatal: fatalColorSchema,
|
|
@@ -749,6 +756,7 @@ var lightColorsSchema = z.object({
|
|
|
749
756
|
help: helpColorSchema,
|
|
750
757
|
success: successColorSchema,
|
|
751
758
|
info: infoColorSchema,
|
|
759
|
+
debug: debugColorSchema,
|
|
752
760
|
warning: warningColorSchema,
|
|
753
761
|
danger: dangerColorSchema,
|
|
754
762
|
fatal: fatalColorSchema,
|
|
@@ -770,6 +778,7 @@ var singleColorsSchema = z.object({
|
|
|
770
778
|
help: helpColorSchema,
|
|
771
779
|
success: successColorSchema,
|
|
772
780
|
info: infoColorSchema,
|
|
781
|
+
debug: debugColorSchema,
|
|
773
782
|
warning: warningColorSchema,
|
|
774
783
|
danger: dangerColorSchema,
|
|
775
784
|
fatal: fatalColorSchema,
|
|
@@ -1555,6 +1564,7 @@ var getSingleThemeColorsEnv = (prefix) => {
|
|
|
1555
1564
|
help: process.env[`${prefix}HELP`],
|
|
1556
1565
|
success: process.env[`${prefix}SUCCESS`],
|
|
1557
1566
|
info: process.env[`${prefix}INFO`],
|
|
1567
|
+
debug: process.env[`${prefix}DEBUG`],
|
|
1558
1568
|
warning: process.env[`${prefix}WARNING`],
|
|
1559
1569
|
danger: process.env[`${prefix}DANGER`],
|
|
1560
1570
|
fatal: process.env[`${prefix}FATAL`],
|
|
@@ -1593,6 +1603,7 @@ var getBaseThemeColorsEnv = (prefix) => {
|
|
|
1593
1603
|
help: process.env[`${prefix}HELP`],
|
|
1594
1604
|
success: process.env[`${prefix}SUCCESS`],
|
|
1595
1605
|
info: process.env[`${prefix}INFO`],
|
|
1606
|
+
debug: process.env[`${prefix}DEBUG`],
|
|
1596
1607
|
warning: process.env[`${prefix}WARNING`],
|
|
1597
1608
|
danger: process.env[`${prefix}DANGER`],
|
|
1598
1609
|
fatal: process.env[`${prefix}FATAL`],
|
|
@@ -1894,6 +1905,9 @@ var setSingleThemeColorsEnv = (prefix, config) => {
|
|
|
1894
1905
|
if (config.info) {
|
|
1895
1906
|
process.env[`${prefix}INFO`] = config.info;
|
|
1896
1907
|
}
|
|
1908
|
+
if (config.debug) {
|
|
1909
|
+
process.env[`${prefix}DEBUG`] = config.debug;
|
|
1910
|
+
}
|
|
1897
1911
|
if (config.warning) {
|
|
1898
1912
|
process.env[`${prefix}WARNING`] = config.warning;
|
|
1899
1913
|
}
|
|
@@ -1949,6 +1963,9 @@ var setBaseThemeColorsEnv = (prefix, config) => {
|
|
|
1949
1963
|
if (config.info) {
|
|
1950
1964
|
process.env[`${prefix}INFO`] = config.info;
|
|
1951
1965
|
}
|
|
1966
|
+
if (config.debug) {
|
|
1967
|
+
process.env[`${prefix}DEBUG`] = config.debug;
|
|
1968
|
+
}
|
|
1952
1969
|
if (config.warning) {
|
|
1953
1970
|
process.env[`${prefix}WARNING`] = config.warning;
|
|
1954
1971
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkLNXYWGASjs = require('./chunk-LNXYWGAS.js');
|
|
4
4
|
|
|
5
5
|
// src/executors/destroy/executor.ts
|
|
6
|
-
var executor_default =
|
|
6
|
+
var executor_default = _chunkLNXYWGASjs.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 _chunkLNXYWGASjs = require('./chunk-LNXYWGAS.js');
|
|
4
4
|
|
|
5
5
|
// src/executors/output/executor.ts
|
|
6
|
-
var executor_default =
|
|
6
|
+
var executor_default = _chunkLNXYWGASjs.withTerraformExecutor.call(void 0, "output");
|
|
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 _chunk25SEY6TKjs = require('./chunk-25SEY6TK.js');
|
|
4
4
|
|
|
5
5
|
// ../config-tools/src/utilities/run.ts
|
|
6
6
|
var _child_process = require('child_process');
|
|
@@ -25,7 +25,7 @@ var run = (config, command, cwd = _nullishCoalesce(config.workspaceRoot, () => (
|
|
|
25
25
|
// src/base/terraform-executor.ts
|
|
26
26
|
var _shelljs = require('shelljs');
|
|
27
27
|
var withTerraformExecutor = (command, executorOptions = {}) => async (_options, context) => {
|
|
28
|
-
return
|
|
28
|
+
return _chunk25SEY6TKjs.withRunExecutor.call(void 0,
|
|
29
29
|
`Terraform \`${command}\` Command Executor`,
|
|
30
30
|
async (options, context2, config) => {
|
|
31
31
|
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 _chunkLNXYWGASjs = require('./chunk-LNXYWGAS.js');
|
|
4
4
|
|
|
5
5
|
// src/executors/plan/executor.ts
|
|
6
|
-
var executor_default =
|
|
6
|
+
var executor_default = _chunkLNXYWGASjs.withTerraformExecutor.call(void 0, "plan");
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|