@storm-software/terraform-tools 0.66.80 → 0.66.81

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 +7 -0
  2. package/dist/{chunk-XUSVIXEJ.js → chunk-3FDOVLTY.js} +2 -2
  3. package/dist/{chunk-M2PEDBV6.mjs → chunk-3IRIVVDV.mjs} +41 -11
  4. package/dist/{chunk-S6RGC2M3.mjs → chunk-523C2S52.mjs} +1 -1
  5. package/dist/{chunk-ZR6GKSIF.js → chunk-6ETHBIXV.js} +2 -2
  6. package/dist/{chunk-O6ROXUTN.mjs → chunk-6FYSEZWH.mjs} +1 -1
  7. package/dist/{chunk-3CSFNH3Z.js → chunk-BYMZHOCC.js} +157 -157
  8. package/dist/{chunk-TYTBAFZE.js → chunk-DQLLLQ3W.js} +41 -11
  9. package/dist/{chunk-JKTX7VHP.mjs → chunk-DZ42ZKYZ.mjs} +1 -1
  10. package/dist/{chunk-I6FP4VNE.js → chunk-E4ESQN5K.js} +2 -2
  11. package/dist/{chunk-UZXYTWUI.mjs → chunk-J57WHN7L.mjs} +1 -1
  12. package/dist/{chunk-2QDLWNVX.mjs → chunk-JFUM7ZZB.mjs} +1 -1
  13. package/dist/{chunk-TGHJHVEQ.js → chunk-SAKJKPCQ.js} +2 -2
  14. package/dist/{chunk-V4NOUTYC.mjs → chunk-TBA2JJ4J.mjs} +1 -1
  15. package/dist/{chunk-ISYDNAZN.js → chunk-YYE5IN55.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
@@ -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("\u2622", "\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>";
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  withTerraformExecutor
3
- } from "./chunk-2QDLWNVX.mjs";
3
+ } from "./chunk-JFUM7ZZB.mjs";
4
4
 
5
5
  // src/executors/apply/executor.ts
6
6
  var executor_default = withTerraformExecutor("apply");
@@ -1,9 +1,9 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
- var _chunkTGHJHVEQjs = require('./chunk-TGHJHVEQ.js');
3
+ var _chunkSAKJKPCQjs = require('./chunk-SAKJKPCQ.js');
4
4
 
5
5
  // src/executors/apply/executor.ts
6
- var executor_default = _chunkTGHJHVEQjs.withTerraformExecutor.call(void 0, "apply");
6
+ var executor_default = _chunkSAKJKPCQjs.withTerraformExecutor.call(void 0, "apply");
7
7
 
8
8
 
9
9
 
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  withTerraformExecutor
3
- } from "./chunk-2QDLWNVX.mjs";
3
+ } from "./chunk-JFUM7ZZB.mjs";
4
4
 
5
5
  // src/executors/destroy/executor.ts
6
6
  var executor_default = withTerraformExecutor("destroy");
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  withRunExecutor
3
- } from "./chunk-M2PEDBV6.mjs";
3
+ } from "./chunk-3IRIVVDV.mjs";
4
4
 
5
5
  // ../config-tools/src/utilities/run.ts
6
6
  import { exec, execSync } from "node:child_process";
@@ -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 _chunkTYTBAFZEjs = require('./chunk-TYTBAFZE.js');
3
+ var _chunkDQLLLQ3Wjs = require('./chunk-DQLLLQ3W.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 _chunkTYTBAFZEjs.withRunExecutor.call(void 0,
28
+ return _chunkDQLLLQ3Wjs.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-M2PEDBV6.mjs";
23
+ } from "./chunk-3IRIVVDV.mjs";
24
24
  import {
25
25
  __dirname
26
26
  } from "./chunk-3SMBRI6D.mjs";
@@ -1,9 +1,9 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
- var _chunkTGHJHVEQjs = require('./chunk-TGHJHVEQ.js');
3
+ var _chunkSAKJKPCQjs = require('./chunk-SAKJKPCQ.js');
4
4
 
5
5
  // src/executors/plan/executor.ts
6
- var executor_default = _chunkTGHJHVEQjs.withTerraformExecutor.call(void 0, "plan");
6
+ var executor_default = _chunkSAKJKPCQjs.withTerraformExecutor.call(void 0, "plan");
7
7
 
8
8
 
9
9
 
package/dist/executors.js CHANGED
@@ -1,7 +1,7 @@
1
1
  "use strict";require('./chunk-E7SPQEPH.js');
2
- require('./chunk-XUSVIXEJ.js');
3
- require('./chunk-ZR6GKSIF.js');
4
- require('./chunk-ISYDNAZN.js');
5
- require('./chunk-I6FP4VNE.js');
6
- require('./chunk-TGHJHVEQ.js');
7
- require('./chunk-TYTBAFZE.js');
2
+ require('./chunk-3FDOVLTY.js');
3
+ require('./chunk-6ETHBIXV.js');
4
+ require('./chunk-YYE5IN55.js');
5
+ require('./chunk-E4ESQN5K.js');
6
+ require('./chunk-SAKJKPCQ.js');
7
+ require('./chunk-DQLLLQ3W.js');
@@ -1,8 +1,8 @@
1
1
  import "./chunk-HYHKZPRR.mjs";
2
- import "./chunk-UZXYTWUI.mjs";
3
- import "./chunk-O6ROXUTN.mjs";
4
- import "./chunk-S6RGC2M3.mjs";
5
- import "./chunk-JKTX7VHP.mjs";
6
- import "./chunk-2QDLWNVX.mjs";
7
- import "./chunk-M2PEDBV6.mjs";
2
+ import "./chunk-J57WHN7L.mjs";
3
+ import "./chunk-6FYSEZWH.mjs";
4
+ import "./chunk-523C2S52.mjs";
5
+ import "./chunk-DZ42ZKYZ.mjs";
6
+ import "./chunk-JFUM7ZZB.mjs";
7
+ import "./chunk-3IRIVVDV.mjs";
8
8
  import "./chunk-3SMBRI6D.mjs";
@@ -1,8 +1,8 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-N2YKXZ5R.js');
2
2
 
3
3
 
4
- var _chunk3CSFNH3Zjs = require('./chunk-3CSFNH3Z.js');
5
- require('./chunk-TYTBAFZE.js');
4
+ var _chunkBYMZHOCCjs = require('./chunk-BYMZHOCC.js');
5
+ require('./chunk-DQLLLQ3W.js');
6
6
 
7
7
 
8
- exports.initGenerator = _chunk3CSFNH3Zjs.initGenerator;
8
+ exports.initGenerator = _chunkBYMZHOCCjs.initGenerator;
@@ -1,8 +1,8 @@
1
1
  import "./chunk-23KFTIT2.mjs";
2
2
  import {
3
3
  initGenerator
4
- } from "./chunk-V4NOUTYC.mjs";
5
- import "./chunk-M2PEDBV6.mjs";
4
+ } from "./chunk-TBA2JJ4J.mjs";
5
+ import "./chunk-3IRIVVDV.mjs";
6
6
  import "./chunk-3SMBRI6D.mjs";
7
7
  export {
8
8
  initGenerator
package/dist/index.js CHANGED
@@ -1,22 +1,22 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-E7SPQEPH.js');
2
- require('./chunk-XUSVIXEJ.js');
3
- require('./chunk-ZR6GKSIF.js');
4
- require('./chunk-ISYDNAZN.js');
2
+ require('./chunk-3FDOVLTY.js');
3
+ require('./chunk-6ETHBIXV.js');
4
+ require('./chunk-YYE5IN55.js');
5
5
  require('./chunk-N2YKXZ5R.js');
6
6
 
7
7
 
8
- var _chunk3CSFNH3Zjs = require('./chunk-3CSFNH3Z.js');
8
+ var _chunkBYMZHOCCjs = require('./chunk-BYMZHOCC.js');
9
9
  require('./chunk-GUQOEBFW.js');
10
10
 
11
11
 
12
12
  var _chunkILC773N2js = require('./chunk-ILC773N2.js');
13
- require('./chunk-I6FP4VNE.js');
13
+ require('./chunk-E4ESQN5K.js');
14
14
 
15
15
 
16
- var _chunkTGHJHVEQjs = require('./chunk-TGHJHVEQ.js');
17
- require('./chunk-TYTBAFZE.js');
16
+ var _chunkSAKJKPCQjs = require('./chunk-SAKJKPCQ.js');
17
+ require('./chunk-DQLLLQ3W.js');
18
18
 
19
19
 
20
20
 
21
21
 
22
- exports.baseTerraformExecutorSchema = _chunkILC773N2js.base_terraform_executor_untyped_default; exports.initGenerator = _chunk3CSFNH3Zjs.initGenerator; exports.withTerraformExecutor = _chunkTGHJHVEQjs.withTerraformExecutor;
22
+ exports.baseTerraformExecutorSchema = _chunkILC773N2js.base_terraform_executor_untyped_default; exports.initGenerator = _chunkBYMZHOCCjs.initGenerator; exports.withTerraformExecutor = _chunkSAKJKPCQjs.withTerraformExecutor;
package/dist/index.mjs CHANGED
@@ -1,20 +1,20 @@
1
1
  import "./chunk-HYHKZPRR.mjs";
2
- import "./chunk-UZXYTWUI.mjs";
3
- import "./chunk-O6ROXUTN.mjs";
4
- import "./chunk-S6RGC2M3.mjs";
2
+ import "./chunk-J57WHN7L.mjs";
3
+ import "./chunk-6FYSEZWH.mjs";
4
+ import "./chunk-523C2S52.mjs";
5
5
  import "./chunk-23KFTIT2.mjs";
6
6
  import {
7
7
  initGenerator
8
- } from "./chunk-V4NOUTYC.mjs";
8
+ } from "./chunk-TBA2JJ4J.mjs";
9
9
  import "./chunk-CA7S5MOH.mjs";
10
10
  import {
11
11
  base_terraform_executor_untyped_default
12
12
  } from "./chunk-EL25IDXP.mjs";
13
- import "./chunk-JKTX7VHP.mjs";
13
+ import "./chunk-DZ42ZKYZ.mjs";
14
14
  import {
15
15
  withTerraformExecutor
16
- } from "./chunk-2QDLWNVX.mjs";
17
- import "./chunk-M2PEDBV6.mjs";
16
+ } from "./chunk-JFUM7ZZB.mjs";
17
+ import "./chunk-3IRIVVDV.mjs";
18
18
  import "./chunk-3SMBRI6D.mjs";
19
19
  export {
20
20
  base_terraform_executor_untyped_default as baseTerraformExecutorSchema,
@@ -4,9 +4,9 @@
4
4
  var _chunkILC773N2js = require('../../chunk-ILC773N2.js');
5
5
 
6
6
 
7
- var _chunkTGHJHVEQjs = require('../../chunk-TGHJHVEQ.js');
8
- require('../../chunk-TYTBAFZE.js');
7
+ var _chunkSAKJKPCQjs = require('../../chunk-SAKJKPCQ.js');
8
+ require('../../chunk-DQLLLQ3W.js');
9
9
 
10
10
 
11
11
 
12
- exports.baseTerraformExecutorSchema = _chunkILC773N2js.base_terraform_executor_untyped_default; exports.withTerraformExecutor = _chunkTGHJHVEQjs.withTerraformExecutor;
12
+ exports.baseTerraformExecutorSchema = _chunkILC773N2js.base_terraform_executor_untyped_default; exports.withTerraformExecutor = _chunkSAKJKPCQjs.withTerraformExecutor;
@@ -4,8 +4,8 @@ import {
4
4
  } from "../../chunk-EL25IDXP.mjs";
5
5
  import {
6
6
  withTerraformExecutor
7
- } from "../../chunk-2QDLWNVX.mjs";
8
- import "../../chunk-M2PEDBV6.mjs";
7
+ } from "../../chunk-JFUM7ZZB.mjs";
8
+ import "../../chunk-3IRIVVDV.mjs";
9
9
  import "../../chunk-3SMBRI6D.mjs";
10
10
  export {
11
11
  base_terraform_executor_untyped_default as baseTerraformExecutorSchema,
@@ -1,7 +1,7 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
- var _chunkTGHJHVEQjs = require('../../chunk-TGHJHVEQ.js');
4
- require('../../chunk-TYTBAFZE.js');
3
+ var _chunkSAKJKPCQjs = require('../../chunk-SAKJKPCQ.js');
4
+ require('../../chunk-DQLLLQ3W.js');
5
5
 
6
6
 
7
- exports.withTerraformExecutor = _chunkTGHJHVEQjs.withTerraformExecutor;
7
+ exports.withTerraformExecutor = _chunkSAKJKPCQjs.withTerraformExecutor;
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  withTerraformExecutor
3
- } from "../../chunk-2QDLWNVX.mjs";
4
- import "../../chunk-M2PEDBV6.mjs";
3
+ } from "../../chunk-JFUM7ZZB.mjs";
4
+ import "../../chunk-3IRIVVDV.mjs";
5
5
  import "../../chunk-3SMBRI6D.mjs";
6
6
  export {
7
7
  withTerraformExecutor
@@ -1,8 +1,8 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
- var _chunkI6FP4VNEjs = require('../../../chunk-I6FP4VNE.js');
4
- require('../../../chunk-TGHJHVEQ.js');
5
- require('../../../chunk-TYTBAFZE.js');
3
+ var _chunkE4ESQN5Kjs = require('../../../chunk-E4ESQN5K.js');
4
+ require('../../../chunk-SAKJKPCQ.js');
5
+ require('../../../chunk-DQLLLQ3W.js');
6
6
 
7
7
 
8
- exports.default = _chunkI6FP4VNEjs.executor_default;
8
+ exports.default = _chunkE4ESQN5Kjs.executor_default;
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  executor_default
3
- } from "../../../chunk-JKTX7VHP.mjs";
4
- import "../../../chunk-2QDLWNVX.mjs";
5
- import "../../../chunk-M2PEDBV6.mjs";
3
+ } from "../../../chunk-DZ42ZKYZ.mjs";
4
+ import "../../../chunk-JFUM7ZZB.mjs";
5
+ import "../../../chunk-3IRIVVDV.mjs";
6
6
  import "../../../chunk-3SMBRI6D.mjs";
7
7
  export {
8
8
  executor_default as default
@@ -1,8 +1,8 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
- var _chunkXUSVIXEJjs = require('../../../chunk-XUSVIXEJ.js');
4
- require('../../../chunk-TGHJHVEQ.js');
5
- require('../../../chunk-TYTBAFZE.js');
3
+ var _chunk3FDOVLTYjs = require('../../../chunk-3FDOVLTY.js');
4
+ require('../../../chunk-SAKJKPCQ.js');
5
+ require('../../../chunk-DQLLLQ3W.js');
6
6
 
7
7
 
8
- exports.default = _chunkXUSVIXEJjs.executor_default;
8
+ exports.default = _chunk3FDOVLTYjs.executor_default;
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  executor_default
3
- } from "../../../chunk-UZXYTWUI.mjs";
4
- import "../../../chunk-2QDLWNVX.mjs";
5
- import "../../../chunk-M2PEDBV6.mjs";
3
+ } from "../../../chunk-J57WHN7L.mjs";
4
+ import "../../../chunk-JFUM7ZZB.mjs";
5
+ import "../../../chunk-3IRIVVDV.mjs";
6
6
  import "../../../chunk-3SMBRI6D.mjs";
7
7
  export {
8
8
  executor_default as default
@@ -1,8 +1,8 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
- var _chunkZR6GKSIFjs = require('../../../chunk-ZR6GKSIF.js');
4
- require('../../../chunk-TGHJHVEQ.js');
5
- require('../../../chunk-TYTBAFZE.js');
3
+ var _chunk6ETHBIXVjs = require('../../../chunk-6ETHBIXV.js');
4
+ require('../../../chunk-SAKJKPCQ.js');
5
+ require('../../../chunk-DQLLLQ3W.js');
6
6
 
7
7
 
8
- exports.default = _chunkZR6GKSIFjs.executor_default;
8
+ exports.default = _chunk6ETHBIXVjs.executor_default;
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  executor_default
3
- } from "../../../chunk-O6ROXUTN.mjs";
4
- import "../../../chunk-2QDLWNVX.mjs";
5
- import "../../../chunk-M2PEDBV6.mjs";
3
+ } from "../../../chunk-6FYSEZWH.mjs";
4
+ import "../../../chunk-JFUM7ZZB.mjs";
5
+ import "../../../chunk-3IRIVVDV.mjs";
6
6
  import "../../../chunk-3SMBRI6D.mjs";
7
7
  export {
8
8
  executor_default as default
@@ -1,8 +1,8 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
- var _chunkISYDNAZNjs = require('../../../chunk-ISYDNAZN.js');
4
- require('../../../chunk-TGHJHVEQ.js');
5
- require('../../../chunk-TYTBAFZE.js');
3
+ var _chunkYYE5IN55js = require('../../../chunk-YYE5IN55.js');
4
+ require('../../../chunk-SAKJKPCQ.js');
5
+ require('../../../chunk-DQLLLQ3W.js');
6
6
 
7
7
 
8
- exports.default = _chunkISYDNAZNjs.executor_default;
8
+ exports.default = _chunkYYE5IN55js.executor_default;
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  executor_default
3
- } from "../../../chunk-S6RGC2M3.mjs";
4
- import "../../../chunk-2QDLWNVX.mjs";
5
- import "../../../chunk-M2PEDBV6.mjs";
3
+ } from "../../../chunk-523C2S52.mjs";
4
+ import "../../../chunk-JFUM7ZZB.mjs";
5
+ import "../../../chunk-3IRIVVDV.mjs";
6
6
  import "../../../chunk-3SMBRI6D.mjs";
7
7
  export {
8
8
  executor_default as default
@@ -1,9 +1,9 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
3
 
4
- var _chunk3CSFNH3Zjs = require('../../../chunk-3CSFNH3Z.js');
5
- require('../../../chunk-TYTBAFZE.js');
4
+ var _chunkBYMZHOCCjs = require('../../../chunk-BYMZHOCC.js');
5
+ require('../../../chunk-DQLLLQ3W.js');
6
6
 
7
7
 
8
8
 
9
- exports.default = _chunk3CSFNH3Zjs.init_default; exports.initGenerator = _chunk3CSFNH3Zjs.initGenerator;
9
+ exports.default = _chunkBYMZHOCCjs.init_default; exports.initGenerator = _chunkBYMZHOCCjs.initGenerator;
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  initGenerator,
3
3
  init_default
4
- } from "../../../chunk-V4NOUTYC.mjs";
5
- import "../../../chunk-M2PEDBV6.mjs";
4
+ } from "../../../chunk-TBA2JJ4J.mjs";
5
+ import "../../../chunk-3IRIVVDV.mjs";
6
6
  import "../../../chunk-3SMBRI6D.mjs";
7
7
  export {
8
8
  init_default as default,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/terraform-tools",
3
- "version": "0.66.80",
3
+ "version": "0.66.81",
4
4
  "description": "Tools for managing Terraform infrastructure within a Nx workspace.",
5
5
  "repository": {
6
6
  "type": "github",
@@ -115,8 +115,8 @@
115
115
  "peerDependencies": {
116
116
  "@nx/devkit": "^22.3.3",
117
117
  "@storm-software/config": "1.135.0",
118
- "@storm-software/config-tools": "1.188.77",
119
- "@storm-software/workspace-tools": "1.294.23",
118
+ "@storm-software/config-tools": "1.188.78",
119
+ "@storm-software/workspace-tools": "1.294.24",
120
120
  "tsup": "8.4.0",
121
121
  "untyped": "1.5.2"
122
122
  },
@@ -135,5 +135,5 @@
135
135
  "publishConfig": { "access": "public" },
136
136
  "executors": "./executors.json",
137
137
  "generators": "./generators.json",
138
- "gitHead": "3053ec1a8f1bd29d0303c98c1fad84c2613b7b97"
138
+ "gitHead": "07050b1e3d753efd24562340d5a7381d600dafc6"
139
139
  }