@storm-software/terraform-tools 0.62.13 → 0.62.14
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/README.md +1 -1
- package/dist/{chunk-WFAKWGXA.js → chunk-37MGUMWD.js} +12 -0
- package/dist/{chunk-CKIMQIWP.mjs → chunk-7NK773UQ.mjs} +12 -0
- package/dist/{chunk-VDAWVSN6.js → chunk-E4HJXG4G.js} +178 -118
- package/dist/{chunk-TXJ44D5O.mjs → chunk-FSWZT3BT.mjs} +1 -1
- package/dist/{chunk-C5VKA26O.mjs → chunk-IGPTNPTU.mjs} +1 -1
- package/dist/{chunk-A6YND2BU.js → chunk-IU6VUV4H.js} +2 -2
- package/dist/{chunk-VFJBGAJA.js → chunk-JE5CFXYT.js} +2 -2
- package/dist/{chunk-R2LPQYBA.mjs → chunk-L3PVSBJE.mjs} +1 -1
- package/dist/{chunk-OBJXBSXN.js → chunk-NE6UXXXJ.js} +2 -2
- package/dist/{chunk-VDGQVQKE.js → chunk-NU2U34L5.js} +2 -2
- package/dist/{chunk-TFRWPS5M.mjs → chunk-O5LMGQZ4.mjs} +73 -13
- package/dist/{chunk-OVEZ53VK.mjs → chunk-OHLLDMOL.mjs} +1 -1
- package/dist/{chunk-AAJDFJYK.js → chunk-OVAEG5B6.js} +2 -2
- package/dist/{chunk-Z235AGW2.mjs → chunk-SDFTWIXT.mjs} +1 -1
- 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 +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Terraform Tools
|
|
4
4
|
|
|
5
|
+
## [0.62.13](https://github.com/storm-software/storm-ops/releases/tag/terraform-tools%400.62.13) (2025-09-06)
|
|
6
|
+
|
|
7
|
+
### Miscellaneous
|
|
8
|
+
|
|
9
|
+
- **monorepo:** Update README markdown files
|
|
10
|
+
([b641c33df](https://github.com/storm-software/storm-ops/commit/b641c33df))
|
|
11
|
+
|
|
5
12
|
## [0.62.12](https://github.com/storm-software/storm-ops/releases/tag/terraform-tools%400.62.12) (2025-08-28)
|
|
6
13
|
|
|
7
14
|
### Miscellaneous
|
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
21
21
|
|
|
22
22
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
|
|
23
23
|
|
|
24
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
25
25
|
|
|
26
26
|
<!-- prettier-ignore-start -->
|
|
27
27
|
<!-- markdownlint-disable -->
|
|
@@ -922,6 +922,13 @@ var workspaceDirectorySchema = z.object({
|
|
|
922
922
|
schemaRegistry.add(workspaceDirectorySchema, {
|
|
923
923
|
description: "Various directories used by the workspace to store data, cache, and configuration files"
|
|
924
924
|
});
|
|
925
|
+
var variantSchema = z._default(
|
|
926
|
+
z.enum(["minimal", "monorepo"]),
|
|
927
|
+
"monorepo"
|
|
928
|
+
);
|
|
929
|
+
schemaRegistry.add(variantSchema, {
|
|
930
|
+
description: "The variant of the workspace. This can be used to enable or disable certain features or configurations."
|
|
931
|
+
});
|
|
925
932
|
var errorCodesFileSchema = z._default(
|
|
926
933
|
z.string().check(z.trim()),
|
|
927
934
|
STORM_DEFAULT_ERROR_CODES_FILE
|
|
@@ -1119,6 +1126,7 @@ var workspaceConfigSchema = z.object({
|
|
|
1119
1126
|
$schema: schemaNameSchema,
|
|
1120
1127
|
extends: extendsSchema,
|
|
1121
1128
|
name: nameSchema,
|
|
1129
|
+
variant: variantSchema,
|
|
1122
1130
|
namespace: namespaceSchema,
|
|
1123
1131
|
organization: orgSchema,
|
|
1124
1132
|
repository: repositorySchema,
|
|
@@ -1357,6 +1365,7 @@ var getConfigEnv = () => {
|
|
|
1357
1365
|
let config = {
|
|
1358
1366
|
extends: process.env[`${prefix}EXTENDS`] || void 0,
|
|
1359
1367
|
name: process.env[`${prefix}NAME`] || void 0,
|
|
1368
|
+
variant: process.env[`${prefix}VARIANT`] || void 0,
|
|
1360
1369
|
namespace: process.env[`${prefix}NAMESPACE`] || void 0,
|
|
1361
1370
|
owner: process.env[`${prefix}OWNER`] || void 0,
|
|
1362
1371
|
bot: {
|
|
@@ -1581,6 +1590,9 @@ var setConfigEnv = (config) => {
|
|
|
1581
1590
|
if (config.name) {
|
|
1582
1591
|
process.env[`${prefix}NAME`] = config.name;
|
|
1583
1592
|
}
|
|
1593
|
+
if (config.variant) {
|
|
1594
|
+
process.env[`${prefix}VARIANT`] = config.variant;
|
|
1595
|
+
}
|
|
1584
1596
|
if (config.namespace) {
|
|
1585
1597
|
process.env[`${prefix}NAMESPACE`] = config.namespace;
|
|
1586
1598
|
}
|
|
@@ -922,6 +922,13 @@ var workspaceDirectorySchema = z.object({
|
|
|
922
922
|
schemaRegistry.add(workspaceDirectorySchema, {
|
|
923
923
|
description: "Various directories used by the workspace to store data, cache, and configuration files"
|
|
924
924
|
});
|
|
925
|
+
var variantSchema = z._default(
|
|
926
|
+
z.enum(["minimal", "monorepo"]),
|
|
927
|
+
"monorepo"
|
|
928
|
+
);
|
|
929
|
+
schemaRegistry.add(variantSchema, {
|
|
930
|
+
description: "The variant of the workspace. This can be used to enable or disable certain features or configurations."
|
|
931
|
+
});
|
|
925
932
|
var errorCodesFileSchema = z._default(
|
|
926
933
|
z.string().check(z.trim()),
|
|
927
934
|
STORM_DEFAULT_ERROR_CODES_FILE
|
|
@@ -1119,6 +1126,7 @@ var workspaceConfigSchema = z.object({
|
|
|
1119
1126
|
$schema: schemaNameSchema,
|
|
1120
1127
|
extends: extendsSchema,
|
|
1121
1128
|
name: nameSchema,
|
|
1129
|
+
variant: variantSchema,
|
|
1122
1130
|
namespace: namespaceSchema,
|
|
1123
1131
|
organization: orgSchema,
|
|
1124
1132
|
repository: repositorySchema,
|
|
@@ -1357,6 +1365,7 @@ var getConfigEnv = () => {
|
|
|
1357
1365
|
let config = {
|
|
1358
1366
|
extends: process.env[`${prefix}EXTENDS`] || void 0,
|
|
1359
1367
|
name: process.env[`${prefix}NAME`] || void 0,
|
|
1368
|
+
variant: process.env[`${prefix}VARIANT`] || void 0,
|
|
1360
1369
|
namespace: process.env[`${prefix}NAMESPACE`] || void 0,
|
|
1361
1370
|
owner: process.env[`${prefix}OWNER`] || void 0,
|
|
1362
1371
|
bot: {
|
|
@@ -1581,6 +1590,9 @@ var setConfigEnv = (config) => {
|
|
|
1581
1590
|
if (config.name) {
|
|
1582
1591
|
process.env[`${prefix}NAME`] = config.name;
|
|
1583
1592
|
}
|
|
1593
|
+
if (config.variant) {
|
|
1594
|
+
process.env[`${prefix}VARIANT`] = config.variant;
|
|
1595
|
+
}
|
|
1584
1596
|
if (config.namespace) {
|
|
1585
1597
|
process.env[`${prefix}NAMESPACE`] = config.namespace;
|
|
1586
1598
|
}
|