@storm-software/terraform-tools 0.66.80 → 0.66.82

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 +14 -0
  2. package/dist/{chunk-TYTBAFZE.js → chunk-32ZQWQIT.js} +41 -11
  3. package/dist/{chunk-3CSFNH3Z.js → chunk-4C2JLEGM.js} +157 -157
  4. package/dist/{chunk-2QDLWNVX.mjs → chunk-4HFRNBTV.mjs} +1 -1
  5. package/dist/{chunk-V4NOUTYC.mjs → chunk-5KCR6NZ4.mjs} +1 -1
  6. package/dist/{chunk-TGHJHVEQ.js → chunk-FHJ2WS6Y.js} +2 -2
  7. package/dist/{chunk-O6ROXUTN.mjs → chunk-FXNK7PAR.mjs} +1 -1
  8. package/dist/{chunk-JKTX7VHP.mjs → chunk-IEIKPI3T.mjs} +1 -1
  9. package/dist/{chunk-M2PEDBV6.mjs → chunk-P6HUD4HG.mjs} +41 -11
  10. package/dist/{chunk-ISYDNAZN.js → chunk-RNHIB3GP.js} +2 -2
  11. package/dist/{chunk-UZXYTWUI.mjs → chunk-SZRRECOC.mjs} +1 -1
  12. package/dist/{chunk-ZR6GKSIF.js → chunk-UWKE3D5R.js} +2 -2
  13. package/dist/{chunk-I6FP4VNE.js → chunk-VUFJ736C.js} +2 -2
  14. package/dist/{chunk-S6RGC2M3.mjs → chunk-XGK3D7O7.mjs} +1 -1
  15. package/dist/{chunk-XUSVIXEJ.js → chunk-XH3MWODV.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 +4 -4
package/CHANGELOG.md CHANGED
@@ -2,6 +2,20 @@
2
2
 
3
3
  # Changelog for Storm Ops - Terraform Tools
4
4
 
5
+ ## [0.66.81](https://github.com/storm-software/storm-ops/releases/tag/terraform-tools%400.66.81) (01/14/2026)
6
+
7
+ ### Updated Dependencies
8
+
9
+ - Updated **workspace-tools** to **v1.294.25**
10
+ - Updated **config-tools** to **v1.188.79**
11
+
12
+ ## [0.66.80](https://github.com/storm-software/storm-ops/releases/tag/terraform-tools%400.66.80) (01/14/2026)
13
+
14
+ ### Updated Dependencies
15
+
16
+ - Updated **workspace-tools** to **v1.294.24**
17
+ - Updated **config-tools** to **v1.188.78**
18
+
5
19
  ## [0.66.79](https://github.com/storm-software/storm-ops/releases/tag/terraform-tools%400.66.79) (01/14/2026)
6
20
 
7
21
  ### Updated Dependencies
@@ -115,9 +115,9 @@ function isUnicodeSupported() {
115
115
  var useIcon = (c, fallback) => isUnicodeSupported() ? c : fallback;
116
116
  var CONSOLE_ICONS = {
117
117
  [LogLevelLabel.ERROR]: useIcon("\u2718", "\xD7"),
118
- [LogLevelLabel.FATAL]: useIcon("\u2620", "\xD7"),
118
+ [LogLevelLabel.FATAL]: useIcon("\u{1F571}", "\xD7"),
119
119
  [LogLevelLabel.WARN]: useIcon("\u26A0", "\u203C"),
120
- [LogLevelLabel.INFO]: useIcon("\u{1F6C8}", "i"),
120
+ [LogLevelLabel.INFO]: useIcon("\u2139", "i"),
121
121
  [LogLevelLabel.SUCCESS]: useIcon("\u2714", "\u221A"),
122
122
  [LogLevelLabel.DEBUG]: useIcon("\u{1F6E0}", "D"),
123
123
  [LogLevelLabel.TRACE]: useIcon("\u2699", "T"),
@@ -192,7 +192,11 @@ var getLogFn = (logLevel = LogLevel.INFO, config = {}, _chalk = getChalk()) => {
192
192
  return (message) => {
193
193
  console.error(
194
194
  `
195
- ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.fatal, () => ( DEFAULT_COLOR_CONFIG.dark.fatal)))(`[${CONSOLE_ICONS[LogLevelLabel.FATAL]} Fatal] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
195
+ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(
196
+ _nullishCoalesce(colors.fatal, () => ( DEFAULT_COLOR_CONFIG.dark.fatal))
197
+ )(
198
+ `[${CONSOLE_ICONS[LogLevelLabel.FATAL]} Fatal] `
199
+ )}${_chalk.bold.whiteBright(formatLogMessage(message))}
196
200
  `
197
201
  );
198
202
  };
@@ -201,7 +205,11 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.fatal, ()
201
205
  return (message) => {
202
206
  console.error(
203
207
  `
204
- ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.danger, () => ( DEFAULT_COLOR_CONFIG.dark.danger)))(`[${CONSOLE_ICONS[LogLevelLabel.ERROR]} Error] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
208
+ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(
209
+ _nullishCoalesce(colors.danger, () => ( DEFAULT_COLOR_CONFIG.dark.danger))
210
+ )(
211
+ `[${CONSOLE_ICONS[LogLevelLabel.ERROR]} Error] `
212
+ )}${_chalk.bold.whiteBright(formatLogMessage(message))}
205
213
  `
206
214
  );
207
215
  };
@@ -210,7 +218,11 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.danger, (
210
218
  return (message) => {
211
219
  console.warn(
212
220
  `
213
- ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.warning, () => ( DEFAULT_COLOR_CONFIG.dark.warning)))(`[${CONSOLE_ICONS[LogLevelLabel.WARN]} Warn] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
221
+ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(
222
+ _nullishCoalesce(colors.warning, () => ( DEFAULT_COLOR_CONFIG.dark.warning))
223
+ )(
224
+ `[${CONSOLE_ICONS[LogLevelLabel.WARN]} Warn] `
225
+ )}${_chalk.bold.whiteBright(formatLogMessage(message))}
214
226
  `
215
227
  );
216
228
  };
@@ -219,7 +231,11 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.warning,
219
231
  return (message) => {
220
232
  console.info(
221
233
  `
222
- ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.success, () => ( DEFAULT_COLOR_CONFIG.dark.success)))(`[${CONSOLE_ICONS[LogLevelLabel.SUCCESS]} Success] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
234
+ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(
235
+ _nullishCoalesce(colors.success, () => ( DEFAULT_COLOR_CONFIG.dark.success))
236
+ )(
237
+ `[${CONSOLE_ICONS[LogLevelLabel.SUCCESS]} Success] `
238
+ )}${_chalk.bold.whiteBright(formatLogMessage(message))}
223
239
  `
224
240
  );
225
241
  };
@@ -228,7 +244,11 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.success,
228
244
  return (message) => {
229
245
  console.info(
230
246
  `
231
- ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.info, () => ( DEFAULT_COLOR_CONFIG.dark.info)))(`[${CONSOLE_ICONS[LogLevelLabel.INFO]} Info] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
247
+ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(
248
+ _nullishCoalesce(colors.info, () => ( DEFAULT_COLOR_CONFIG.dark.info))
249
+ )(
250
+ `[${CONSOLE_ICONS[LogLevelLabel.INFO]} Info] `
251
+ )}${_chalk.bold.whiteBright(formatLogMessage(message))}
232
252
  `
233
253
  );
234
254
  };
@@ -237,7 +257,11 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.info, ()
237
257
  return (message) => {
238
258
  console.debug(
239
259
  `
240
- ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.debug, () => ( DEFAULT_COLOR_CONFIG.dark.debug)))(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
260
+ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(
261
+ _nullishCoalesce(colors.debug, () => ( DEFAULT_COLOR_CONFIG.dark.debug))
262
+ )(
263
+ `[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug] `
264
+ )}${_chalk.bold.whiteBright(formatLogMessage(message))}
241
265
  `
242
266
  );
243
267
  };
@@ -246,7 +270,9 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.debug, ()
246
270
  return (message) => {
247
271
  console.debug(
248
272
  `
249
- ${_chalk.gray(formatTimestamp())} ${_chalk.hex("#bbbbbb")(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
273
+ ${_chalk.gray(formatTimestamp())} ${_chalk.hex("#bbbbbb")(
274
+ `[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace] `
275
+ )}${_chalk.bold.whiteBright(formatLogMessage(message))}
250
276
  `
251
277
  );
252
278
  };
@@ -254,7 +280,11 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex("#bbbbbb")(`[${CONSOLE_ICONS[LogL
254
280
  return (message) => {
255
281
  console.log(
256
282
  `
257
- ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.brand, () => ( DEFAULT_COLOR_CONFIG.dark.brand)))(`[${CONSOLE_ICONS[LogLevelLabel.ALL]} System] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
283
+ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(
284
+ _nullishCoalesce(colors.brand, () => ( DEFAULT_COLOR_CONFIG.dark.brand))
285
+ )(
286
+ `[${CONSOLE_ICONS[LogLevelLabel.ALL]} System] `
287
+ )}${_chalk.bold.whiteBright(formatLogMessage(message))}
258
288
  `
259
289
  );
260
290
  };
@@ -278,7 +308,7 @@ var getStopwatch = (name) => {
278
308
  );
279
309
  };
280
310
  };
281
- var MAX_DEPTH = 4;
311
+ var MAX_DEPTH = 6;
282
312
  var formatLogMessage = (message, options = {}, depth2 = 0) => {
283
313
  if (depth2 > MAX_DEPTH) {
284
314
  return "<max depth>";