@storm-software/terraform-tools 0.54.26 → 0.54.29

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 (37) hide show
  1. package/CHANGELOG.md +23 -0
  2. package/README.md +1 -1
  3. package/dist/{chunk-G5PYGJD3.mjs → chunk-3WK6TOEQ.mjs} +1 -1
  4. package/dist/{chunk-JTWWCHOY.js → chunk-CGSFJIIU.js} +2 -2
  5. package/dist/{chunk-5YGWQRMQ.js → chunk-G7Z6MEYZ.js} +2 -2
  6. package/dist/{chunk-3ZAFBUDR.js → chunk-HLHB472M.js} +2 -2
  7. package/dist/{chunk-KWC4B2IB.js → chunk-ISD3KOJH.js} +25 -25
  8. package/dist/{chunk-HCUDHOA5.mjs → chunk-IYCLXMY5.mjs} +1 -1
  9. package/dist/{chunk-L7KGL5QM.js → chunk-KU7XQWZI.js} +181 -182
  10. package/dist/{chunk-D6GXLL2Y.mjs → chunk-M5ME7ATW.mjs} +25 -25
  11. package/dist/{chunk-OI65N3CE.mjs → chunk-R3BFLMXQ.mjs} +1 -1
  12. package/dist/{chunk-753IKN36.js → chunk-U4KXII2A.js} +3 -3
  13. package/dist/{chunk-RPCBCF6T.mjs → chunk-V74I37PF.mjs} +31 -32
  14. package/dist/{chunk-ME4WDJGK.js → chunk-WFNWZFRJ.js} +2 -2
  15. package/dist/{chunk-MRL343WW.mjs → chunk-WWB3SZR5.mjs} +1 -1
  16. package/dist/{chunk-RDVYV2VH.mjs → chunk-X5SGDD4A.mjs} +1 -1
  17. package/dist/executors.js +6 -6
  18. package/dist/executors.mjs +6 -6
  19. package/dist/generators.js +3 -3
  20. package/dist/generators.mjs +2 -2
  21. package/dist/index.js +8 -8
  22. package/dist/index.mjs +7 -7
  23. package/dist/src/base/index.js +3 -3
  24. package/dist/src/base/index.mjs +2 -2
  25. package/dist/src/base/terraform-executor.js +3 -3
  26. package/dist/src/base/terraform-executor.mjs +2 -2
  27. package/dist/src/executors/apply/executor.js +4 -4
  28. package/dist/src/executors/apply/executor.mjs +3 -3
  29. package/dist/src/executors/destroy/executor.js +4 -4
  30. package/dist/src/executors/destroy/executor.mjs +3 -3
  31. package/dist/src/executors/output/executor.js +4 -4
  32. package/dist/src/executors/output/executor.mjs +3 -3
  33. package/dist/src/executors/plan/executor.js +4 -4
  34. package/dist/src/executors/plan/executor.mjs +3 -3
  35. package/dist/src/generators/init/init.js +3 -3
  36. package/dist/src/generators/init/init.mjs +2 -2
  37. package/package.json +1 -1
@@ -134,7 +134,7 @@ var RegistryConfigSchema = z.object({
134
134
  var ColorConfigSchema = SingleThemeColorConfigSchema.or(MultiThemeColorConfigSchema).describe("Colors used for various workspace elements");
135
135
  var ColorConfigMapSchema = z.union([
136
136
  z.object({
137
- "base": ColorConfigSchema
137
+ base: ColorConfigSchema
138
138
  }),
139
139
  z.record(z.string(), ColorConfigSchema)
140
140
  ]);
@@ -437,31 +437,31 @@ __name(findWorkspaceRoot, "findWorkspaceRoot");
437
437
 
438
438
  // ../config-tools/src/utilities/get-default-config.ts
439
439
  var DEFAULT_COLOR_CONFIG = {
440
- "light": {
441
- "background": "#fafafa",
442
- "foreground": "#1d1e22",
443
- "brand": "#1fb2a6",
444
- "alternate": "#db2777",
445
- "help": "#5C4EE5",
446
- "success": "#087f5b",
447
- "info": "#0550ae",
448
- "warning": "#e3b341",
449
- "danger": "#D8314A",
450
- "positive": "#22c55e",
451
- "negative": "#dc2626"
440
+ light: {
441
+ background: "#fafafa",
442
+ foreground: "#1d1e22",
443
+ brand: "#1fb2a6",
444
+ alternate: "#db2777",
445
+ help: "#5C4EE5",
446
+ success: "#087f5b",
447
+ info: "#0550ae",
448
+ warning: "#e3b341",
449
+ danger: "#D8314A",
450
+ positive: "#22c55e",
451
+ negative: "#dc2626"
452
452
  },
453
- "dark": {
454
- "background": "#1d1e22",
455
- "foreground": "#cbd5e1",
456
- "brand": "#2dd4bf",
457
- "alternate": "#db2777",
458
- "help": "#818cf8",
459
- "success": "#10b981",
460
- "info": "#58a6ff",
461
- "warning": "#f3d371",
462
- "danger": "#D8314A",
463
- "positive": "#22c55e",
464
- "negative": "#dc2626"
453
+ dark: {
454
+ background: "#1d1e22",
455
+ foreground: "#cbd5e1",
456
+ brand: "#2dd4bf",
457
+ alternate: "#db2777",
458
+ help: "#818cf8",
459
+ success: "#10b981",
460
+ info: "#58a6ff",
461
+ warning: "#f3d371",
462
+ danger: "#D8314A",
463
+ positive: "#22c55e",
464
+ negative: "#dc2626"
465
465
  }
466
466
  };
467
467
  var getDefaultConfig = /* @__PURE__ */ __name(async (root) => {
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  withTerraformExecutor
3
- } from "./chunk-RDVYV2VH.mjs";
3
+ } from "./chunk-X5SGDD4A.mjs";
4
4
 
5
5
  // src/executors/destroy/executor.ts
6
6
  var executor_default = withTerraformExecutor("destroy");
@@ -1,7 +1,7 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
3
 
4
- var _chunkKWC4B2IBjs = require('./chunk-KWC4B2IB.js');
4
+ var _chunkISD3KOJHjs = require('./chunk-ISD3KOJH.js');
5
5
 
6
6
 
7
7
  var _chunk3GQAWCBQjs = require('./chunk-3GQAWCBQ.js');
@@ -9,7 +9,7 @@ var _chunk3GQAWCBQjs = require('./chunk-3GQAWCBQ.js');
9
9
  // src/base/terraform-executor.ts
10
10
  var _shelljs = require('shelljs');
11
11
  var withTerraformExecutor = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, (command, executorOptions = {}) => async (_options, context) => {
12
- return _chunkKWC4B2IBjs.withRunExecutor.call(void 0, `Terraform \`${command}\` Command Executor`, async (options, context2, config) => {
12
+ return _chunkISD3KOJHjs.withRunExecutor.call(void 0, `Terraform \`${command}\` Command Executor`, async (options, context2, config) => {
13
13
  if (!_shelljs.which.call(void 0, "tofu") || !_shelljs.which.call(void 0, "terraform")) {
14
14
  throw new Error("Both OpenTofu and Terraform are not installed. Please install one of the two before running this executor.");
15
15
  }
@@ -21,7 +21,7 @@ var withTerraformExecutor = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0,
21
21
  if (typeof jsonBackendConfig === "string") {
22
22
  jsonBackendConfig = JSON.parse(jsonBackendConfig);
23
23
  }
24
- _chunkKWC4B2IBjs.run.call(void 0, config, [
24
+ _chunkISD3KOJHjs.run.call(void 0, config, [
25
25
  "terragrunt",
26
26
  command,
27
27
  ...jsonBackendConfig.map((config2) => `-backend-config="${config2.key}=${config2.name}"`),
@@ -17,7 +17,7 @@ import {
17
17
  writeSuccess,
18
18
  writeTrace,
19
19
  writeWarning
20
- } from "./chunk-D6GXLL2Y.mjs";
20
+ } from "./chunk-M5ME7ATW.mjs";
21
21
  import {
22
22
  __dirname,
23
23
  __name,
@@ -456,17 +456,17 @@ var addPackageJsonExport = /* @__PURE__ */ __name((file, type = "module", source
456
456
  entry = entry.replace(sourceRoot, "");
457
457
  }
458
458
  return {
459
- "import": {
460
- "types": `./dist/${entry}.d.${type === "module" ? "ts" : "mts"}`,
461
- "default": `./dist/${entry}.${type === "module" ? "js" : "mjs"}`
459
+ import: {
460
+ types: `./dist/${entry}.d.${type === "module" ? "ts" : "mts"}`,
461
+ default: `./dist/${entry}.${type === "module" ? "js" : "mjs"}`
462
462
  },
463
- "require": {
464
- "types": `./dist/${entry}.d.${type === "commonjs" ? "ts" : "cts"}`,
465
- "default": `./dist/${entry}.${type === "commonjs" ? "js" : "cjs"}`
463
+ require: {
464
+ types: `./dist/${entry}.d.${type === "commonjs" ? "ts" : "cts"}`,
465
+ default: `./dist/${entry}.${type === "commonjs" ? "js" : "cjs"}`
466
466
  },
467
- "default": {
468
- "types": `./dist/${entry}.d.ts`,
469
- "default": `./dist/${entry}.js`
467
+ default: {
468
+ types: `./dist/${entry}.d.ts`,
469
+ default: `./dist/${entry}.js`
470
470
  }
471
471
  };
472
472
  }, "addPackageJsonExport");
@@ -920,7 +920,6 @@ function bundleTypeDefinitions(filename, outfile, externals, options) {
920
920
  overrideTsconfig: {
921
921
  compilerOptions: {
922
922
  paths: {}
923
- // bug with api extract + paths
924
923
  }
925
924
  }
926
925
  },
@@ -2662,14 +2661,14 @@ async function presetGeneratorFn(tree, options) {
2662
2661
  };
2663
2662
  json.maintainers ??= [
2664
2663
  {
2665
- "name": "Storm Software",
2666
- "email": "contact@stormsoftware.com",
2667
- "url": "https://stormsoftware.com"
2664
+ name: "Storm Software",
2665
+ email: "contact@stormsoftware.com",
2666
+ url: "https://stormsoftware.com"
2668
2667
  },
2669
2668
  {
2670
- "name": "Pat Sullivan",
2671
- "email": "admin@stormsoftware.com",
2672
- "url": "https://patsullivan.org"
2669
+ name: "Pat Sullivan",
2670
+ email: "admin@stormsoftware.com",
2671
+ url: "https://patsullivan.org"
2673
2672
  }
2674
2673
  ];
2675
2674
  json.funding ??= {
@@ -2685,12 +2684,12 @@ async function presetGeneratorFn(tree, options) {
2685
2684
  };
2686
2685
  json.packageManager ??= "pnpm@9.15.2";
2687
2686
  json.engines ??= {
2688
- "node": ">=20.11.0",
2689
- "pnpm": ">=9.15.2"
2687
+ node: ">=20.11.0",
2688
+ pnpm: ">=9.15.2"
2690
2689
  };
2691
2690
  json.prettier = "@storm-software/prettier/config.json";
2692
2691
  json.nx ??= {
2693
- "includedScripts": [
2692
+ includedScripts: [
2694
2693
  "lint-sherif",
2695
2694
  "lint-knip",
2696
2695
  "lint-ls",
@@ -2784,22 +2783,22 @@ async function presetGeneratorFn(tree, options) {
2784
2783
  "@storm-software/prettier": "latest",
2785
2784
  "@taplo/cli": "0.7.0",
2786
2785
  "@types/node": "^20.14.10",
2787
- "copyfiles": "2.4.1",
2788
- "eslint": "9.5.0",
2789
- "jest": "29.7.0",
2786
+ copyfiles: "2.4.1",
2787
+ eslint: "9.5.0",
2788
+ jest: "29.7.0",
2790
2789
  "jest-environment-node": "29.7.0",
2791
- "knip": "5.25.2",
2792
- "lefthook": "1.6.18",
2793
- "nx": "^20.2.2",
2794
- "prettier": "3.3.2",
2790
+ knip: "5.25.2",
2791
+ lefthook: "1.6.18",
2792
+ nx: "^20.2.2",
2793
+ prettier: "3.3.2",
2795
2794
  "prettier-plugin-prisma": "5.0.0",
2796
- "rimraf": "5.0.7",
2797
- "sherif": "0.10.0",
2795
+ rimraf: "5.0.7",
2796
+ sherif: "0.10.0",
2798
2797
  "ts-jest": "29.1.5",
2799
2798
  "ts-node": "10.9.2",
2800
- "tslib": "2.6.3",
2801
- "typescript": "5.5.3",
2802
- "verdaccio": "5.31.1"
2799
+ tslib: "2.6.3",
2800
+ typescript: "5.5.3",
2801
+ verdaccio: "5.31.1"
2803
2802
  };
2804
2803
  if (options.includeApps) {
2805
2804
  dependencies = {
@@ -1,9 +1,9 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
- var _chunk753IKN36js = require('./chunk-753IKN36.js');
3
+ var _chunkU4KXII2Ajs = require('./chunk-U4KXII2A.js');
4
4
 
5
5
  // src/executors/plan/executor.ts
6
- var executor_default = _chunk753IKN36js.withTerraformExecutor.call(void 0, "plan");
6
+ var executor_default = _chunkU4KXII2Ajs.withTerraformExecutor.call(void 0, "plan");
7
7
 
8
8
 
9
9
 
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  withTerraformExecutor
3
- } from "./chunk-RDVYV2VH.mjs";
3
+ } from "./chunk-X5SGDD4A.mjs";
4
4
 
5
5
  // src/executors/plan/executor.ts
6
6
  var executor_default = withTerraformExecutor("plan");
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  run,
3
3
  withRunExecutor
4
- } from "./chunk-D6GXLL2Y.mjs";
4
+ } from "./chunk-M5ME7ATW.mjs";
5
5
  import {
6
6
  __name
7
7
  } from "./chunk-R7DU2APC.mjs";
package/dist/executors.js CHANGED
@@ -1,8 +1,8 @@
1
1
  "use strict";require('./chunk-E7SPQEPH.js');
2
- require('./chunk-5YGWQRMQ.js');
3
- require('./chunk-3ZAFBUDR.js');
4
- require('./chunk-ME4WDJGK.js');
5
- require('./chunk-JTWWCHOY.js');
6
- require('./chunk-753IKN36.js');
7
- require('./chunk-KWC4B2IB.js');
2
+ require('./chunk-G7Z6MEYZ.js');
3
+ require('./chunk-HLHB472M.js');
4
+ require('./chunk-WFNWZFRJ.js');
5
+ require('./chunk-CGSFJIIU.js');
6
+ require('./chunk-U4KXII2A.js');
7
+ require('./chunk-ISD3KOJH.js');
8
8
  require('./chunk-3GQAWCBQ.js');
@@ -1,8 +1,8 @@
1
1
  import "./chunk-HYHKZPRR.mjs";
2
- import "./chunk-OI65N3CE.mjs";
3
- import "./chunk-HCUDHOA5.mjs";
4
- import "./chunk-MRL343WW.mjs";
5
- import "./chunk-G5PYGJD3.mjs";
6
- import "./chunk-RDVYV2VH.mjs";
7
- import "./chunk-D6GXLL2Y.mjs";
2
+ import "./chunk-R3BFLMXQ.mjs";
3
+ import "./chunk-IYCLXMY5.mjs";
4
+ import "./chunk-WWB3SZR5.mjs";
5
+ import "./chunk-3WK6TOEQ.mjs";
6
+ import "./chunk-X5SGDD4A.mjs";
7
+ import "./chunk-M5ME7ATW.mjs";
8
8
  import "./chunk-R7DU2APC.mjs";
@@ -1,9 +1,9 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-N2YKXZ5R.js');
2
2
 
3
3
 
4
- var _chunkL7KGL5QMjs = require('./chunk-L7KGL5QM.js');
5
- require('./chunk-KWC4B2IB.js');
4
+ var _chunkKU7XQWZIjs = require('./chunk-KU7XQWZI.js');
5
+ require('./chunk-ISD3KOJH.js');
6
6
  require('./chunk-3GQAWCBQ.js');
7
7
 
8
8
 
9
- exports.initGenerator = _chunkL7KGL5QMjs.initGenerator;
9
+ exports.initGenerator = _chunkKU7XQWZIjs.initGenerator;
@@ -1,8 +1,8 @@
1
1
  import "./chunk-23KFTIT2.mjs";
2
2
  import {
3
3
  initGenerator
4
- } from "./chunk-RPCBCF6T.mjs";
5
- import "./chunk-D6GXLL2Y.mjs";
4
+ } from "./chunk-V74I37PF.mjs";
5
+ import "./chunk-M5ME7ATW.mjs";
6
6
  import "./chunk-R7DU2APC.mjs";
7
7
  export {
8
8
  initGenerator
package/dist/index.js CHANGED
@@ -1,23 +1,23 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-E7SPQEPH.js');
2
- require('./chunk-5YGWQRMQ.js');
3
- require('./chunk-3ZAFBUDR.js');
4
- require('./chunk-ME4WDJGK.js');
2
+ require('./chunk-G7Z6MEYZ.js');
3
+ require('./chunk-HLHB472M.js');
4
+ require('./chunk-WFNWZFRJ.js');
5
5
  require('./chunk-N2YKXZ5R.js');
6
6
 
7
7
 
8
- var _chunkL7KGL5QMjs = require('./chunk-L7KGL5QM.js');
8
+ var _chunkKU7XQWZIjs = require('./chunk-KU7XQWZI.js');
9
9
  require('./chunk-GUQOEBFW.js');
10
10
 
11
11
 
12
12
  var _chunkILC773N2js = require('./chunk-ILC773N2.js');
13
- require('./chunk-JTWWCHOY.js');
13
+ require('./chunk-CGSFJIIU.js');
14
14
 
15
15
 
16
- var _chunk753IKN36js = require('./chunk-753IKN36.js');
17
- require('./chunk-KWC4B2IB.js');
16
+ var _chunkU4KXII2Ajs = require('./chunk-U4KXII2A.js');
17
+ require('./chunk-ISD3KOJH.js');
18
18
  require('./chunk-3GQAWCBQ.js');
19
19
 
20
20
 
21
21
 
22
22
 
23
- exports.baseTerraformExecutorSchema = _chunkILC773N2js.base_terraform_executor_untyped_default; exports.initGenerator = _chunkL7KGL5QMjs.initGenerator; exports.withTerraformExecutor = _chunk753IKN36js.withTerraformExecutor;
23
+ exports.baseTerraformExecutorSchema = _chunkILC773N2js.base_terraform_executor_untyped_default; exports.initGenerator = _chunkKU7XQWZIjs.initGenerator; exports.withTerraformExecutor = _chunkU4KXII2Ajs.withTerraformExecutor;
package/dist/index.mjs CHANGED
@@ -1,20 +1,20 @@
1
1
  import "./chunk-HYHKZPRR.mjs";
2
- import "./chunk-OI65N3CE.mjs";
3
- import "./chunk-HCUDHOA5.mjs";
4
- import "./chunk-MRL343WW.mjs";
2
+ import "./chunk-R3BFLMXQ.mjs";
3
+ import "./chunk-IYCLXMY5.mjs";
4
+ import "./chunk-WWB3SZR5.mjs";
5
5
  import "./chunk-23KFTIT2.mjs";
6
6
  import {
7
7
  initGenerator
8
- } from "./chunk-RPCBCF6T.mjs";
8
+ } from "./chunk-V74I37PF.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-G5PYGJD3.mjs";
13
+ import "./chunk-3WK6TOEQ.mjs";
14
14
  import {
15
15
  withTerraformExecutor
16
- } from "./chunk-RDVYV2VH.mjs";
17
- import "./chunk-D6GXLL2Y.mjs";
16
+ } from "./chunk-X5SGDD4A.mjs";
17
+ import "./chunk-M5ME7ATW.mjs";
18
18
  import "./chunk-R7DU2APC.mjs";
19
19
  export {
20
20
  base_terraform_executor_untyped_default as baseTerraformExecutorSchema,
@@ -4,10 +4,10 @@
4
4
  var _chunkILC773N2js = require('../../chunk-ILC773N2.js');
5
5
 
6
6
 
7
- var _chunk753IKN36js = require('../../chunk-753IKN36.js');
8
- require('../../chunk-KWC4B2IB.js');
7
+ var _chunkU4KXII2Ajs = require('../../chunk-U4KXII2A.js');
8
+ require('../../chunk-ISD3KOJH.js');
9
9
  require('../../chunk-3GQAWCBQ.js');
10
10
 
11
11
 
12
12
 
13
- exports.baseTerraformExecutorSchema = _chunkILC773N2js.base_terraform_executor_untyped_default; exports.withTerraformExecutor = _chunk753IKN36js.withTerraformExecutor;
13
+ exports.baseTerraformExecutorSchema = _chunkILC773N2js.base_terraform_executor_untyped_default; exports.withTerraformExecutor = _chunkU4KXII2Ajs.withTerraformExecutor;
@@ -4,8 +4,8 @@ import {
4
4
  } from "../../chunk-EL25IDXP.mjs";
5
5
  import {
6
6
  withTerraformExecutor
7
- } from "../../chunk-RDVYV2VH.mjs";
8
- import "../../chunk-D6GXLL2Y.mjs";
7
+ } from "../../chunk-X5SGDD4A.mjs";
8
+ import "../../chunk-M5ME7ATW.mjs";
9
9
  import "../../chunk-R7DU2APC.mjs";
10
10
  export {
11
11
  base_terraform_executor_untyped_default as baseTerraformExecutorSchema,
@@ -1,8 +1,8 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
- var _chunk753IKN36js = require('../../chunk-753IKN36.js');
4
- require('../../chunk-KWC4B2IB.js');
3
+ var _chunkU4KXII2Ajs = require('../../chunk-U4KXII2A.js');
4
+ require('../../chunk-ISD3KOJH.js');
5
5
  require('../../chunk-3GQAWCBQ.js');
6
6
 
7
7
 
8
- exports.withTerraformExecutor = _chunk753IKN36js.withTerraformExecutor;
8
+ exports.withTerraformExecutor = _chunkU4KXII2Ajs.withTerraformExecutor;
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  withTerraformExecutor
3
- } from "../../chunk-RDVYV2VH.mjs";
4
- import "../../chunk-D6GXLL2Y.mjs";
3
+ } from "../../chunk-X5SGDD4A.mjs";
4
+ import "../../chunk-M5ME7ATW.mjs";
5
5
  import "../../chunk-R7DU2APC.mjs";
6
6
  export {
7
7
  withTerraformExecutor
@@ -1,9 +1,9 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
- var _chunkJTWWCHOYjs = require('../../../chunk-JTWWCHOY.js');
4
- require('../../../chunk-753IKN36.js');
5
- require('../../../chunk-KWC4B2IB.js');
3
+ var _chunkCGSFJIIUjs = require('../../../chunk-CGSFJIIU.js');
4
+ require('../../../chunk-U4KXII2A.js');
5
+ require('../../../chunk-ISD3KOJH.js');
6
6
  require('../../../chunk-3GQAWCBQ.js');
7
7
 
8
8
 
9
- exports.default = _chunkJTWWCHOYjs.executor_default;
9
+ exports.default = _chunkCGSFJIIUjs.executor_default;
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  executor_default
3
- } from "../../../chunk-G5PYGJD3.mjs";
4
- import "../../../chunk-RDVYV2VH.mjs";
5
- import "../../../chunk-D6GXLL2Y.mjs";
3
+ } from "../../../chunk-3WK6TOEQ.mjs";
4
+ import "../../../chunk-X5SGDD4A.mjs";
5
+ import "../../../chunk-M5ME7ATW.mjs";
6
6
  import "../../../chunk-R7DU2APC.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
- var _chunk5YGWQRMQjs = require('../../../chunk-5YGWQRMQ.js');
4
- require('../../../chunk-753IKN36.js');
5
- require('../../../chunk-KWC4B2IB.js');
3
+ var _chunkG7Z6MEYZjs = require('../../../chunk-G7Z6MEYZ.js');
4
+ require('../../../chunk-U4KXII2A.js');
5
+ require('../../../chunk-ISD3KOJH.js');
6
6
  require('../../../chunk-3GQAWCBQ.js');
7
7
 
8
8
 
9
- exports.default = _chunk5YGWQRMQjs.executor_default;
9
+ exports.default = _chunkG7Z6MEYZjs.executor_default;
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  executor_default
3
- } from "../../../chunk-OI65N3CE.mjs";
4
- import "../../../chunk-RDVYV2VH.mjs";
5
- import "../../../chunk-D6GXLL2Y.mjs";
3
+ } from "../../../chunk-R3BFLMXQ.mjs";
4
+ import "../../../chunk-X5SGDD4A.mjs";
5
+ import "../../../chunk-M5ME7ATW.mjs";
6
6
  import "../../../chunk-R7DU2APC.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
- var _chunk3ZAFBUDRjs = require('../../../chunk-3ZAFBUDR.js');
4
- require('../../../chunk-753IKN36.js');
5
- require('../../../chunk-KWC4B2IB.js');
3
+ var _chunkHLHB472Mjs = require('../../../chunk-HLHB472M.js');
4
+ require('../../../chunk-U4KXII2A.js');
5
+ require('../../../chunk-ISD3KOJH.js');
6
6
  require('../../../chunk-3GQAWCBQ.js');
7
7
 
8
8
 
9
- exports.default = _chunk3ZAFBUDRjs.executor_default;
9
+ exports.default = _chunkHLHB472Mjs.executor_default;
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  executor_default
3
- } from "../../../chunk-HCUDHOA5.mjs";
4
- import "../../../chunk-RDVYV2VH.mjs";
5
- import "../../../chunk-D6GXLL2Y.mjs";
3
+ } from "../../../chunk-IYCLXMY5.mjs";
4
+ import "../../../chunk-X5SGDD4A.mjs";
5
+ import "../../../chunk-M5ME7ATW.mjs";
6
6
  import "../../../chunk-R7DU2APC.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
- var _chunkME4WDJGKjs = require('../../../chunk-ME4WDJGK.js');
4
- require('../../../chunk-753IKN36.js');
5
- require('../../../chunk-KWC4B2IB.js');
3
+ var _chunkWFNWZFRJjs = require('../../../chunk-WFNWZFRJ.js');
4
+ require('../../../chunk-U4KXII2A.js');
5
+ require('../../../chunk-ISD3KOJH.js');
6
6
  require('../../../chunk-3GQAWCBQ.js');
7
7
 
8
8
 
9
- exports.default = _chunkME4WDJGKjs.executor_default;
9
+ exports.default = _chunkWFNWZFRJjs.executor_default;
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  executor_default
3
- } from "../../../chunk-MRL343WW.mjs";
4
- import "../../../chunk-RDVYV2VH.mjs";
5
- import "../../../chunk-D6GXLL2Y.mjs";
3
+ } from "../../../chunk-WWB3SZR5.mjs";
4
+ import "../../../chunk-X5SGDD4A.mjs";
5
+ import "../../../chunk-M5ME7ATW.mjs";
6
6
  import "../../../chunk-R7DU2APC.mjs";
7
7
  export {
8
8
  executor_default as default
@@ -1,10 +1,10 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
3
 
4
- var _chunkL7KGL5QMjs = require('../../../chunk-L7KGL5QM.js');
5
- require('../../../chunk-KWC4B2IB.js');
4
+ var _chunkKU7XQWZIjs = require('../../../chunk-KU7XQWZI.js');
5
+ require('../../../chunk-ISD3KOJH.js');
6
6
  require('../../../chunk-3GQAWCBQ.js');
7
7
 
8
8
 
9
9
 
10
- exports.default = _chunkL7KGL5QMjs.init_default; exports.initGenerator = _chunkL7KGL5QMjs.initGenerator;
10
+ exports.default = _chunkKU7XQWZIjs.init_default; exports.initGenerator = _chunkKU7XQWZIjs.initGenerator;
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  initGenerator,
3
3
  init_default
4
- } from "../../../chunk-RPCBCF6T.mjs";
5
- import "../../../chunk-D6GXLL2Y.mjs";
4
+ } from "../../../chunk-V74I37PF.mjs";
5
+ import "../../../chunk-M5ME7ATW.mjs";
6
6
  import "../../../chunk-R7DU2APC.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.54.26",
3
+ "version": "0.54.29",
4
4
  "description": "Tools for managing Terraform infrastructure within a Nx workspace.",
5
5
  "repository": {
6
6
  "type": "github",