@storm-software/terraform-tools 0.66.78 → 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.
Files changed (36) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist/{chunk-JM3BQRLO.js → chunk-25SEY6TK.js} +2 -2
  3. package/dist/{chunk-WRTXGMPN.js → chunk-5VNAQK7B.js} +2 -2
  4. package/dist/{chunk-PPOCAVI5.js → chunk-BBOLLBFZ.js} +2 -2
  5. package/dist/{chunk-5NCQDMPD.mjs → chunk-I53PCL5S.mjs} +1 -1
  6. package/dist/{chunk-NY7YBIY2.js → chunk-LNXYWGAS.js} +2 -2
  7. package/dist/{chunk-AQOO2KOR.mjs → chunk-NB5PVKFM.mjs} +1 -1
  8. package/dist/{chunk-M7UVJTVK.mjs → chunk-P5BRQAIT.mjs} +1 -1
  9. package/dist/{chunk-OMYGDDJC.js → chunk-QA42EDAB.js} +2 -2
  10. package/dist/{chunk-QRPKMNZL.mjs → chunk-RIEYZR2V.mjs} +1 -1
  11. package/dist/{chunk-XFBGFXKA.mjs → chunk-SFDYWWEG.mjs} +1 -1
  12. package/dist/{chunk-UQM3YNU7.js → chunk-TFC7CJJL.js} +157 -157
  13. package/dist/{chunk-ZY6E4CLJ.mjs → chunk-TTRVAHUW.mjs} +1 -1
  14. package/dist/{chunk-CC2QIMFE.mjs → chunk-TWI5KBOR.mjs} +2 -2
  15. package/dist/{chunk-SC3CXY4A.js → chunk-VLDCT332.js} +2 -2
  16. package/dist/executors.js +6 -6
  17. package/dist/executors.mjs +6 -6
  18. package/dist/generators.js +3 -3
  19. package/dist/generators.mjs +2 -2
  20. package/dist/index.js +8 -8
  21. package/dist/index.mjs +7 -7
  22. package/dist/src/base/index.js +3 -3
  23. package/dist/src/base/index.mjs +2 -2
  24. package/dist/src/base/terraform-executor.js +3 -3
  25. package/dist/src/base/terraform-executor.mjs +2 -2
  26. package/dist/src/executors/apply/executor.js +4 -4
  27. package/dist/src/executors/apply/executor.mjs +3 -3
  28. package/dist/src/executors/destroy/executor.js +4 -4
  29. package/dist/src/executors/destroy/executor.mjs +3 -3
  30. package/dist/src/executors/output/executor.js +4 -4
  31. package/dist/src/executors/output/executor.mjs +3 -3
  32. package/dist/src/executors/plan/executor.js +4 -4
  33. package/dist/src/executors/plan/executor.mjs +3 -3
  34. package/dist/src/generators/init/init.js +3 -3
  35. package/dist/src/generators/init/init.mjs +2 -2
  36. package/package.json +5 -5
package/CHANGELOG.md CHANGED
@@ -2,6 +2,14 @@
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
+
5
13
  ## [0.66.77](https://github.com/storm-software/storm-ops/releases/tag/terraform-tools%400.66.77) (12/30/2025)
6
14
 
7
15
  ### Miscellaneous
@@ -237,7 +237,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.info, ()
237
237
  return (message) => {
238
238
  console.debug(
239
239
  `
240
- ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.debug, () => ( DEFAULT_COLOR_CONFIG.dark.info)))(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
240
+ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.debug, () => ( DEFAULT_COLOR_CONFIG.dark.debug)))(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
241
241
  `
242
242
  );
243
243
  };
@@ -246,7 +246,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.debug, ()
246
246
  return (message) => {
247
247
  console.debug(
248
248
  `
249
- ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.debug, () => ( DEFAULT_COLOR_CONFIG.dark.debug)))(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
249
+ ${_chalk.gray(formatTimestamp())} ${_chalk.hex("#bbbbbb")(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
250
250
  `
251
251
  );
252
252
  };
@@ -1,9 +1,9 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
- var _chunkNY7YBIY2js = require('./chunk-NY7YBIY2.js');
3
+ var _chunkLNXYWGASjs = require('./chunk-LNXYWGAS.js');
4
4
 
5
5
  // src/executors/destroy/executor.ts
6
- var executor_default = _chunkNY7YBIY2js.withTerraformExecutor.call(void 0, "destroy");
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 _chunkNY7YBIY2js = require('./chunk-NY7YBIY2.js');
3
+ var _chunkLNXYWGASjs = require('./chunk-LNXYWGAS.js');
4
4
 
5
5
  // src/executors/output/executor.ts
6
- var executor_default = _chunkNY7YBIY2js.withTerraformExecutor.call(void 0, "output");
6
+ var executor_default = _chunkLNXYWGASjs.withTerraformExecutor.call(void 0, "output");
7
7
 
8
8
 
9
9
 
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  withTerraformExecutor
3
- } from "./chunk-M7UVJTVK.mjs";
3
+ } from "./chunk-P5BRQAIT.mjs";
4
4
 
5
5
  // src/executors/output/executor.ts
6
6
  var executor_default = withTerraformExecutor("output");
@@ -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 _chunkJM3BQRLOjs = require('./chunk-JM3BQRLO.js');
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 _chunkJM3BQRLOjs.withRunExecutor.call(void 0,
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")) {
@@ -20,7 +20,7 @@ import {
20
20
  writeSuccess,
21
21
  writeTrace,
22
22
  writeWarning
23
- } from "./chunk-CC2QIMFE.mjs";
23
+ } from "./chunk-TWI5KBOR.mjs";
24
24
  import {
25
25
  __dirname
26
26
  } from "./chunk-3SMBRI6D.mjs";
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  withRunExecutor
3
- } from "./chunk-CC2QIMFE.mjs";
3
+ } from "./chunk-TWI5KBOR.mjs";
4
4
 
5
5
  // ../config-tools/src/utilities/run.ts
6
6
  import { exec, execSync } from "node:child_process";
@@ -1,9 +1,9 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
- var _chunkNY7YBIY2js = require('./chunk-NY7YBIY2.js');
3
+ var _chunkLNXYWGASjs = require('./chunk-LNXYWGAS.js');
4
4
 
5
5
  // src/executors/plan/executor.ts
6
- var executor_default = _chunkNY7YBIY2js.withTerraformExecutor.call(void 0, "plan");
6
+ var executor_default = _chunkLNXYWGASjs.withTerraformExecutor.call(void 0, "plan");
7
7
 
8
8
 
9
9
 
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  withTerraformExecutor
3
- } from "./chunk-M7UVJTVK.mjs";
3
+ } from "./chunk-P5BRQAIT.mjs";
4
4
 
5
5
  // src/executors/plan/executor.ts
6
6
  var executor_default = withTerraformExecutor("plan");
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  withTerraformExecutor
3
- } from "./chunk-M7UVJTVK.mjs";
3
+ } from "./chunk-P5BRQAIT.mjs";
4
4
 
5
5
  // src/executors/apply/executor.ts
6
6
  var executor_default = withTerraformExecutor("apply");