@storm-software/terraform-tools 0.45.4 → 0.47.0
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 +35 -0
- package/dist/chunk-23KFTIT2.mjs +0 -0
- package/dist/chunk-3GQAWCBQ.js +13 -0
- package/dist/chunk-463AGI5I.mjs +10 -0
- package/dist/chunk-53WQJQ5K.js +10 -0
- package/dist/chunk-6GLEQENV.mjs +10 -0
- package/dist/chunk-AOTMRUKU.js +53 -0
- package/dist/chunk-CKOFQEPW.mjs +3358 -0
- package/dist/chunk-E7SPQEPH.js +1 -0
- package/dist/chunk-EAPOMBKY.mjs +10 -0
- package/dist/chunk-HYHKZPRR.mjs +0 -0
- package/dist/chunk-JNBNKAGF.js +1288 -0
- package/dist/chunk-JYICRHOG.js +1 -0
- package/dist/chunk-MW3JRZ4N.js +10 -0
- package/dist/chunk-N2YKXZ5R.js +1 -0
- package/dist/chunk-NEISKBUA.mjs +10 -0
- package/dist/chunk-NFRDTYPD.js +3357 -0
- package/dist/chunk-ORW4ATBO.mjs +0 -0
- package/dist/chunk-SCRXKTPS.js +10 -0
- package/dist/chunk-SH7NPG4K.mjs +1288 -0
- package/dist/chunk-SIQ2JL7E.js +10 -0
- package/dist/chunk-WKVEHDC2.mjs +53 -0
- package/dist/chunk-XUV4U54K.mjs +21 -0
- package/dist/executors.d.mts +21 -0
- package/dist/executors.d.ts +21 -0
- package/dist/executors.js +8 -0
- package/dist/executors.mjs +8 -0
- package/dist/generators.d.mts +10 -0
- package/dist/generators.d.ts +10 -0
- package/dist/generators.js +9 -0
- package/dist/generators.mjs +9 -0
- package/dist/index.d.mts +9 -0
- package/dist/index.d.ts +9 -0
- package/dist/index.js +19 -0
- package/dist/index.mjs +19 -0
- package/dist/schema.d-DRCBZob5.d.mts +3 -0
- package/dist/schema.d-DRCBZob5.d.ts +3 -0
- package/dist/src/base/base-terraform-executor.schema.d.d.mts +98 -0
- package/dist/src/base/base-terraform-executor.schema.d.d.ts +98 -0
- package/dist/src/base/base-terraform-executor.schema.d.js +1 -0
- package/dist/src/base/base-terraform-executor.schema.d.mjs +1 -0
- package/dist/src/base/base-terraform-executor.untyped.d.mts +5 -0
- package/dist/src/base/base-terraform-executor.untyped.d.ts +5 -0
- package/dist/src/base/base-terraform-executor.untyped.js +94 -0
- package/dist/src/base/base-terraform-executor.untyped.mjs +94 -0
- package/dist/src/base/index.d.mts +6 -0
- package/dist/src/base/index.d.ts +6 -0
- package/dist/src/base/index.js +9 -0
- package/dist/src/base/index.mjs +9 -0
- package/dist/src/base/terraform-executor.d.mts +1205 -0
- package/dist/src/base/terraform-executor.d.ts +1205 -0
- package/dist/src/base/terraform-executor.js +8 -0
- package/dist/src/base/terraform-executor.mjs +8 -0
- package/dist/src/executors/apply/executor.d.mts +12 -0
- package/dist/src/executors/apply/executor.d.ts +12 -0
- package/dist/src/executors/apply/executor.js +9 -0
- package/dist/src/executors/apply/executor.mjs +9 -0
- package/dist/src/executors/apply/schema.d.ts +5 -0
- package/dist/src/executors/apply/schema.json +21 -0
- package/dist/src/executors/destroy/executor.d.mts +12 -0
- package/dist/src/executors/destroy/executor.d.ts +12 -0
- package/dist/src/executors/destroy/executor.js +9 -0
- package/dist/src/executors/destroy/executor.mjs +9 -0
- package/dist/src/executors/destroy/schema.d.ts +5 -0
- package/dist/src/executors/destroy/schema.json +16 -0
- package/dist/src/executors/output/executor.d.mts +8 -0
- package/dist/src/executors/output/executor.d.ts +8 -0
- package/dist/src/executors/output/executor.js +9 -0
- package/dist/src/executors/output/executor.mjs +9 -0
- package/dist/src/executors/output/schema.d.ts +1 -0
- package/dist/src/executors/output/schema.json +10 -0
- package/dist/src/executors/plan/executor.d.mts +12 -0
- package/dist/src/executors/plan/executor.d.ts +12 -0
- package/dist/src/executors/plan/executor.js +9 -0
- package/dist/src/executors/plan/executor.mjs +9 -0
- package/dist/src/executors/plan/schema.d.ts +5 -0
- package/dist/src/executors/plan/schema.json +16 -0
- package/dist/src/generators/init/init.d.mts +2 -0
- package/dist/src/generators/init/init.d.ts +2 -0
- package/dist/src/generators/init/init.js +10 -0
- package/dist/src/generators/init/init.mjs +10 -0
- package/dist/src/generators/init/schema.d.ts +3 -0
- package/dist/src/generators/init/schema.json +16 -0
- package/dist/tsup.config.d.mts +5 -0
- package/dist/tsup.config.d.ts +5 -0
- package/dist/tsup.config.js +35 -0
- package/dist/tsup.config.mjs +35 -0
- package/package.json +1 -1
- /package/dist/src/base/{base-terraform-executor.d.ts → base-terraform-executor.schema.d.ts} +0 -0
- /package/docs/api/base/{base-terraform-executor.md → base-terraform-executor.schema.md} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,38 @@
|
|
|
1
|
+
## 0.47.0 (2025-01-20)
|
|
2
|
+
|
|
3
|
+
### Features
|
|
4
|
+
|
|
5
|
+
- **untyped:** Standard file name changes to avoid collisions ([71acf100](https://github.com/storm-software/storm-ops/commit/71acf100))
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- **terraform-tools:** Resolve issue with invalid import path ([7a8ee2cf](https://github.com/storm-software/storm-ops/commit/7a8ee2cf))
|
|
10
|
+
|
|
11
|
+
### 🧱 Updated Dependencies
|
|
12
|
+
|
|
13
|
+
- Updated workspace-tools to 1.229.0
|
|
14
|
+
- Updated workspace-tools to 1.229.0
|
|
15
|
+
|
|
16
|
+
## 0.46.0 (2025-01-20)
|
|
17
|
+
|
|
18
|
+
### Features
|
|
19
|
+
|
|
20
|
+
- **workspace-tools:** Update Nx plugin packages to use new build/dist infrastructure ([67cd3df2](https://github.com/storm-software/storm-ops/commit/67cd3df2))
|
|
21
|
+
- **untyped:** Initial check-in for the `untyped` package ([c02dad71](https://github.com/storm-software/storm-ops/commit/c02dad71))
|
|
22
|
+
|
|
23
|
+
### Bug Fixes
|
|
24
|
+
|
|
25
|
+
- **workspace-tools:** Resolved issue with invalid `package.json` exports ([76c63c08](https://github.com/storm-software/storm-ops/commit/76c63c08))
|
|
26
|
+
|
|
27
|
+
### Miscellaneous
|
|
28
|
+
|
|
29
|
+
- **monorepo:** Regenerate README markdown files ([5c8e5c96](https://github.com/storm-software/storm-ops/commit/5c8e5c96))
|
|
30
|
+
|
|
31
|
+
### 🧱 Updated Dependencies
|
|
32
|
+
|
|
33
|
+
- Updated workspace-tools to 1.228.0
|
|
34
|
+
- Updated workspace-tools to 1.228.0
|
|
35
|
+
|
|
1
36
|
## 0.45.4 (2025-01-17)
|
|
2
37
|
|
|
3
38
|
### Bug Fixes
|
|
File without changes
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true});var __defProp = Object.defineProperty;
|
|
2
|
+
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
|
3
|
+
var __require = /* @__PURE__ */ ((x) => typeof require !== "undefined" ? require : typeof Proxy !== "undefined" ? new Proxy(x, {
|
|
4
|
+
get: (a, b) => (typeof require !== "undefined" ? require : a)[b]
|
|
5
|
+
}) : x)(function(x) {
|
|
6
|
+
if (typeof require !== "undefined") return require.apply(this, arguments);
|
|
7
|
+
throw Error('Dynamic require of "' + x + '" is not supported');
|
|
8
|
+
});
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
exports.__name = __name; exports.__require = __require;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
|
+
|
|
3
|
+
var _chunkAOTMRUKUjs = require('./chunk-AOTMRUKU.js');
|
|
4
|
+
|
|
5
|
+
// src/executors/destroy/executor.ts
|
|
6
|
+
var executor_default = _chunkAOTMRUKUjs.withTerraformExecutor.call(void 0, "destroy");
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
exports.executor_default = executor_default;
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
var _chunkJNBNKAGFjs = require('./chunk-JNBNKAGF.js');
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
var _chunk3GQAWCBQjs = require('./chunk-3GQAWCBQ.js');
|
|
8
|
+
|
|
9
|
+
// src/base/terraform-executor.ts
|
|
10
|
+
var _shelljs = require('shelljs');
|
|
11
|
+
var withTerraformExecutor = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, (command, executorOptions = {}) => async (_options, context) => {
|
|
12
|
+
return _chunkJNBNKAGFjs.withRunExecutor.call(void 0, `Terraform \`${command}\` Command Executor`, async (options, context2, config) => {
|
|
13
|
+
if (!_shelljs.which.call(void 0, "tofu") || !_shelljs.which.call(void 0, "terraform")) {
|
|
14
|
+
throw new Error("Both OpenTofu and Terraform are not installed. Please install one of the two before running this executor.");
|
|
15
|
+
}
|
|
16
|
+
if (!_shelljs.which.call(void 0, "terragrunt")) {
|
|
17
|
+
throw new Error("Terragrunt is not installed. Please install them before running this executor.");
|
|
18
|
+
}
|
|
19
|
+
const { backendConfig = [], planFile, autoApproval, formatWrite, upgrade, migrateState, lock, varFile, varString, reconfigure } = options;
|
|
20
|
+
let jsonBackendConfig = backendConfig;
|
|
21
|
+
if (typeof jsonBackendConfig === "string") {
|
|
22
|
+
jsonBackendConfig = JSON.parse(jsonBackendConfig);
|
|
23
|
+
}
|
|
24
|
+
_chunkJNBNKAGFjs.run.call(void 0, config, [
|
|
25
|
+
"terragrunt",
|
|
26
|
+
command,
|
|
27
|
+
...jsonBackendConfig.map((config2) => `-backend-config="${config2.key}=${config2.name}"`),
|
|
28
|
+
command === "plan" && planFile && `-out ${planFile}`,
|
|
29
|
+
command === "plan" && varFile && `--var-file ${varFile}`,
|
|
30
|
+
command === "plan" && varString && `--var ${varString}`,
|
|
31
|
+
command === "destroy" && autoApproval && "-auto-approve",
|
|
32
|
+
command === "apply" && autoApproval && "-auto-approve",
|
|
33
|
+
command === "apply" && planFile,
|
|
34
|
+
command === "apply" && varString && `--var ${varString}`,
|
|
35
|
+
command === "fmt" && "--recursive",
|
|
36
|
+
command === "fmt" && !formatWrite && "--check --list",
|
|
37
|
+
command === "init" && upgrade && "-upgrade",
|
|
38
|
+
command === "init" && migrateState && "-migrate-state",
|
|
39
|
+
command === "init" && reconfigure && "-reconfigure",
|
|
40
|
+
command === "providers" && lock && "lock",
|
|
41
|
+
command === "test" && varFile && `--var-file ${varFile}`,
|
|
42
|
+
command === "test" && varString && `--var ${varString}`
|
|
43
|
+
].filter(Boolean).join(" "), options.sourceRoot, "inherit", process.env.CI ? {
|
|
44
|
+
TF_IN_AUTOMATION: "true",
|
|
45
|
+
TF_INPUT: "0"
|
|
46
|
+
} : {});
|
|
47
|
+
return null;
|
|
48
|
+
}, executorOptions)(_options, context);
|
|
49
|
+
}, "withTerraformExecutor");
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
exports.withTerraformExecutor = withTerraformExecutor;
|