@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.
- package/CHANGELOG.md +7 -0
- package/dist/{chunk-XUSVIXEJ.js → chunk-3FDOVLTY.js} +2 -2
- package/dist/{chunk-M2PEDBV6.mjs → chunk-3IRIVVDV.mjs} +41 -11
- package/dist/{chunk-S6RGC2M3.mjs → chunk-523C2S52.mjs} +1 -1
- package/dist/{chunk-ZR6GKSIF.js → chunk-6ETHBIXV.js} +2 -2
- package/dist/{chunk-O6ROXUTN.mjs → chunk-6FYSEZWH.mjs} +1 -1
- package/dist/{chunk-3CSFNH3Z.js → chunk-BYMZHOCC.js} +157 -157
- package/dist/{chunk-TYTBAFZE.js → chunk-DQLLLQ3W.js} +41 -11
- package/dist/{chunk-JKTX7VHP.mjs → chunk-DZ42ZKYZ.mjs} +1 -1
- package/dist/{chunk-I6FP4VNE.js → chunk-E4ESQN5K.js} +2 -2
- package/dist/{chunk-UZXYTWUI.mjs → chunk-J57WHN7L.mjs} +1 -1
- package/dist/{chunk-2QDLWNVX.mjs → chunk-JFUM7ZZB.mjs} +1 -1
- package/dist/{chunk-TGHJHVEQ.js → chunk-SAKJKPCQ.js} +2 -2
- package/dist/{chunk-V4NOUTYC.mjs → chunk-TBA2JJ4J.mjs} +1 -1
- package/dist/{chunk-ISYDNAZN.js → chunk-YYE5IN55.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 +8 -8
- package/dist/index.mjs +7 -7
- 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 +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("\
|
|
118
|
+
[LogLevelLabel.FATAL]: useIcon("\u2622", "\xD7"),
|
|
119
119
|
[LogLevelLabel.WARN]: useIcon("\u26A0", "\u203C"),
|
|
120
|
-
[LogLevelLabel.INFO]: useIcon("\
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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")(
|
|
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(
|
|
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 =
|
|
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,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkSAKJKPCQjs = require('./chunk-SAKJKPCQ.js');
|
|
4
4
|
|
|
5
5
|
// src/executors/apply/executor.ts
|
|
6
|
-
var executor_default =
|
|
6
|
+
var executor_default = _chunkSAKJKPCQjs.withTerraformExecutor.call(void 0, "apply");
|
|
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 _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
|
|
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")) {
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkSAKJKPCQjs = require('./chunk-SAKJKPCQ.js');
|
|
4
4
|
|
|
5
5
|
// src/executors/plan/executor.ts
|
|
6
|
-
var executor_default =
|
|
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-
|
|
3
|
-
require('./chunk-
|
|
4
|
-
require('./chunk-
|
|
5
|
-
require('./chunk-
|
|
6
|
-
require('./chunk-
|
|
7
|
-
require('./chunk-
|
|
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');
|
package/dist/executors.mjs
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import "./chunk-HYHKZPRR.mjs";
|
|
2
|
-
import "./chunk-
|
|
3
|
-
import "./chunk-
|
|
4
|
-
import "./chunk-
|
|
5
|
-
import "./chunk-
|
|
6
|
-
import "./chunk-
|
|
7
|
-
import "./chunk-
|
|
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";
|
package/dist/generators.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-N2YKXZ5R.js');
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
5
|
-
require('./chunk-
|
|
4
|
+
var _chunkBYMZHOCCjs = require('./chunk-BYMZHOCC.js');
|
|
5
|
+
require('./chunk-DQLLLQ3W.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
exports.initGenerator =
|
|
8
|
+
exports.initGenerator = _chunkBYMZHOCCjs.initGenerator;
|
package/dist/generators.mjs
CHANGED
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-
|
|
3
|
-
require('./chunk-
|
|
4
|
-
require('./chunk-
|
|
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
|
|
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-
|
|
13
|
+
require('./chunk-E4ESQN5K.js');
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
var
|
|
17
|
-
require('./chunk-
|
|
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 =
|
|
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-
|
|
3
|
-
import "./chunk-
|
|
4
|
-
import "./chunk-
|
|
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-
|
|
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-
|
|
13
|
+
import "./chunk-DZ42ZKYZ.mjs";
|
|
14
14
|
import {
|
|
15
15
|
withTerraformExecutor
|
|
16
|
-
} from "./chunk-
|
|
17
|
-
import "./chunk-
|
|
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,
|
package/dist/src/base/index.js
CHANGED
|
@@ -4,9 +4,9 @@
|
|
|
4
4
|
var _chunkILC773N2js = require('../../chunk-ILC773N2.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
var
|
|
8
|
-
require('../../chunk-
|
|
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 =
|
|
12
|
+
exports.baseTerraformExecutorSchema = _chunkILC773N2js.base_terraform_executor_untyped_default; exports.withTerraformExecutor = _chunkSAKJKPCQjs.withTerraformExecutor;
|
package/dist/src/base/index.mjs
CHANGED
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
} from "../../chunk-EL25IDXP.mjs";
|
|
5
5
|
import {
|
|
6
6
|
withTerraformExecutor
|
|
7
|
-
} from "../../chunk-
|
|
8
|
-
import "../../chunk-
|
|
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
|
|
4
|
-
require('../../chunk-
|
|
3
|
+
var _chunkSAKJKPCQjs = require('../../chunk-SAKJKPCQ.js');
|
|
4
|
+
require('../../chunk-DQLLLQ3W.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
exports.withTerraformExecutor =
|
|
7
|
+
exports.withTerraformExecutor = _chunkSAKJKPCQjs.withTerraformExecutor;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('../../../chunk-
|
|
5
|
-
require('../../../chunk-
|
|
3
|
+
var _chunkE4ESQN5Kjs = require('../../../chunk-E4ESQN5K.js');
|
|
4
|
+
require('../../../chunk-SAKJKPCQ.js');
|
|
5
|
+
require('../../../chunk-DQLLLQ3W.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
exports.default =
|
|
8
|
+
exports.default = _chunkE4ESQN5Kjs.executor_default;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
executor_default
|
|
3
|
-
} from "../../../chunk-
|
|
4
|
-
import "../../../chunk-
|
|
5
|
-
import "../../../chunk-
|
|
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
|
|
4
|
-
require('../../../chunk-
|
|
5
|
-
require('../../../chunk-
|
|
3
|
+
var _chunk3FDOVLTYjs = require('../../../chunk-3FDOVLTY.js');
|
|
4
|
+
require('../../../chunk-SAKJKPCQ.js');
|
|
5
|
+
require('../../../chunk-DQLLLQ3W.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
exports.default =
|
|
8
|
+
exports.default = _chunk3FDOVLTYjs.executor_default;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
executor_default
|
|
3
|
-
} from "../../../chunk-
|
|
4
|
-
import "../../../chunk-
|
|
5
|
-
import "../../../chunk-
|
|
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
|
|
4
|
-
require('../../../chunk-
|
|
5
|
-
require('../../../chunk-
|
|
3
|
+
var _chunk6ETHBIXVjs = require('../../../chunk-6ETHBIXV.js');
|
|
4
|
+
require('../../../chunk-SAKJKPCQ.js');
|
|
5
|
+
require('../../../chunk-DQLLLQ3W.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
exports.default =
|
|
8
|
+
exports.default = _chunk6ETHBIXVjs.executor_default;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
executor_default
|
|
3
|
-
} from "../../../chunk-
|
|
4
|
-
import "../../../chunk-
|
|
5
|
-
import "../../../chunk-
|
|
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
|
|
4
|
-
require('../../../chunk-
|
|
5
|
-
require('../../../chunk-
|
|
3
|
+
var _chunkYYE5IN55js = require('../../../chunk-YYE5IN55.js');
|
|
4
|
+
require('../../../chunk-SAKJKPCQ.js');
|
|
5
|
+
require('../../../chunk-DQLLLQ3W.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
exports.default =
|
|
8
|
+
exports.default = _chunkYYE5IN55js.executor_default;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
executor_default
|
|
3
|
-
} from "../../../chunk-
|
|
4
|
-
import "../../../chunk-
|
|
5
|
-
import "../../../chunk-
|
|
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
|
|
5
|
-
require('../../../chunk-
|
|
4
|
+
var _chunkBYMZHOCCjs = require('../../../chunk-BYMZHOCC.js');
|
|
5
|
+
require('../../../chunk-DQLLLQ3W.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
exports.default =
|
|
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-
|
|
5
|
-
import "../../../chunk-
|
|
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.
|
|
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.
|
|
119
|
-
"@storm-software/workspace-tools": "1.294.
|
|
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": "
|
|
138
|
+
"gitHead": "07050b1e3d753efd24562340d5a7381d600dafc6"
|
|
139
139
|
}
|