@storm-software/terraform-tools 0.47.0 → 0.47.1
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 +11 -0
- package/dist/chunk-EL25IDXP.mjs +93 -0
- package/dist/chunk-ILC773N2.js +93 -0
- package/dist/{chunk-CKOFQEPW.mjs → chunk-W4CCHPMY.mjs} +576 -0
- package/dist/{chunk-NFRDTYPD.js → chunk-YLTIJRR5.js} +576 -0
- package/dist/executors.d.mts +0 -1
- package/dist/executors.d.ts +0 -1
- package/dist/executors.js +1 -1
- package/dist/executors.mjs +1 -1
- package/dist/generators.js +2 -2
- package/dist/generators.mjs +1 -1
- package/dist/index.d.mts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +8 -4
- package/dist/index.mjs +7 -3
- package/dist/src/base/base-terraform-executor.untyped.js +4 -91
- package/dist/src/base/base-terraform-executor.untyped.mjs +3 -90
- package/dist/src/base/index.d.mts +2 -1
- package/dist/src/base/index.d.ts +2 -1
- package/dist/src/base/index.js +6 -2
- package/dist/src/base/index.mjs +5 -1
- package/dist/src/base/terraform-executor.d.mts +97 -1
- package/dist/src/base/terraform-executor.d.ts +97 -1
- package/dist/src/executors/apply/executor.d.mts +0 -1
- package/dist/src/executors/apply/executor.d.ts +0 -1
- package/dist/src/executors/destroy/executor.d.mts +0 -1
- package/dist/src/executors/destroy/executor.d.ts +0 -1
- package/dist/src/executors/plan/executor.d.mts +0 -1
- package/dist/src/executors/plan/executor.d.ts +0 -1
- package/dist/src/generators/init/init.js +2 -2
- package/dist/src/generators/init/init.mjs +1 -1
- package/dist/tsup.config.js +5 -1
- package/dist/tsup.config.mjs +5 -1
- package/package.json +1 -1
- package/dist/src/base/base-terraform-executor.schema.d.d.mts +0 -98
- package/dist/src/base/base-terraform-executor.schema.d.d.ts +0 -98
- package/dist/src/base/base-terraform-executor.schema.d.js +0 -1
- package/dist/src/base/base-terraform-executor.schema.d.mjs +0 -1
- /package/dist/{chunk-ORW4ATBO.mjs → chunk-CA7S5MOH.mjs} +0 -0
- /package/dist/{chunk-JYICRHOG.js → chunk-GUQOEBFW.js} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
## 0.47.1 (2025-01-20)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
- **workspace-tools:** Resolve cross-platform build issue in `copyfiles` script ([331a723f](https://github.com/storm-software/storm-ops/commit/331a723f))
|
|
6
|
+
|
|
7
|
+
### 🧱 Updated Dependencies
|
|
8
|
+
|
|
9
|
+
- Updated workspace-tools to 1.229.1
|
|
10
|
+
- Updated workspace-tools to 1.229.1
|
|
11
|
+
|
|
1
12
|
## 0.47.0 (2025-01-20)
|
|
2
13
|
|
|
3
14
|
### Features
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
// src/base/base-terraform-executor.untyped.ts
|
|
2
|
+
import { defineUntypedSchema } from "untyped";
|
|
3
|
+
var base_terraform_executor_untyped_default = defineUntypedSchema({
|
|
4
|
+
$schema: {
|
|
5
|
+
title: "Base Terraform Executor",
|
|
6
|
+
description: "A base type definition for a Terraform executor schema"
|
|
7
|
+
},
|
|
8
|
+
backendConfig: {
|
|
9
|
+
$schema: {
|
|
10
|
+
title: "Backend Config",
|
|
11
|
+
type: "array",
|
|
12
|
+
description: "The backend configuration"
|
|
13
|
+
},
|
|
14
|
+
$default: []
|
|
15
|
+
},
|
|
16
|
+
autoApproval: {
|
|
17
|
+
$schema: {
|
|
18
|
+
title: "Auto Approval",
|
|
19
|
+
type: "boolean",
|
|
20
|
+
description: "Whether to auto-approve the plan"
|
|
21
|
+
},
|
|
22
|
+
$default: false
|
|
23
|
+
},
|
|
24
|
+
planFile: {
|
|
25
|
+
$schema: {
|
|
26
|
+
title: "Plan File",
|
|
27
|
+
format: "path",
|
|
28
|
+
description: "The plan file",
|
|
29
|
+
type: "string"
|
|
30
|
+
},
|
|
31
|
+
$default: "plan.out"
|
|
32
|
+
},
|
|
33
|
+
formatWrite: {
|
|
34
|
+
$schema: {
|
|
35
|
+
title: "Format Write",
|
|
36
|
+
type: "boolean",
|
|
37
|
+
description: "Whether to format the files before writing"
|
|
38
|
+
},
|
|
39
|
+
$default: false
|
|
40
|
+
},
|
|
41
|
+
upgrade: {
|
|
42
|
+
$schema: {
|
|
43
|
+
title: "Upgrade",
|
|
44
|
+
type: "boolean",
|
|
45
|
+
description: "Whether to upgrade the modules"
|
|
46
|
+
},
|
|
47
|
+
$default: false
|
|
48
|
+
},
|
|
49
|
+
migrateState: {
|
|
50
|
+
$schema: {
|
|
51
|
+
title: "Migrate State",
|
|
52
|
+
type: "boolean",
|
|
53
|
+
description: "Whether to migrate the state"
|
|
54
|
+
},
|
|
55
|
+
$default: false
|
|
56
|
+
},
|
|
57
|
+
lock: {
|
|
58
|
+
$schema: {
|
|
59
|
+
title: "Lock",
|
|
60
|
+
type: "boolean",
|
|
61
|
+
description: "Whether to lock the state"
|
|
62
|
+
},
|
|
63
|
+
$default: false
|
|
64
|
+
},
|
|
65
|
+
varFile: {
|
|
66
|
+
$schema: {
|
|
67
|
+
title: "Var File",
|
|
68
|
+
format: "path",
|
|
69
|
+
type: "string",
|
|
70
|
+
description: "The variable file"
|
|
71
|
+
},
|
|
72
|
+
$default: "variables.tf"
|
|
73
|
+
},
|
|
74
|
+
varString: {
|
|
75
|
+
$schema: {
|
|
76
|
+
title: "Var String",
|
|
77
|
+
type: "string",
|
|
78
|
+
description: "The variable string"
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
reconfigure: {
|
|
82
|
+
$schema: {
|
|
83
|
+
title: "Reconfigure",
|
|
84
|
+
type: "boolean",
|
|
85
|
+
description: "Whether to reconfigure the state"
|
|
86
|
+
},
|
|
87
|
+
$default: false
|
|
88
|
+
}
|
|
89
|
+
});
|
|
90
|
+
|
|
91
|
+
export {
|
|
92
|
+
base_terraform_executor_untyped_default
|
|
93
|
+
};
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true});// src/base/base-terraform-executor.untyped.ts
|
|
2
|
+
var _untyped = require('untyped');
|
|
3
|
+
var base_terraform_executor_untyped_default = _untyped.defineUntypedSchema.call(void 0, {
|
|
4
|
+
$schema: {
|
|
5
|
+
title: "Base Terraform Executor",
|
|
6
|
+
description: "A base type definition for a Terraform executor schema"
|
|
7
|
+
},
|
|
8
|
+
backendConfig: {
|
|
9
|
+
$schema: {
|
|
10
|
+
title: "Backend Config",
|
|
11
|
+
type: "array",
|
|
12
|
+
description: "The backend configuration"
|
|
13
|
+
},
|
|
14
|
+
$default: []
|
|
15
|
+
},
|
|
16
|
+
autoApproval: {
|
|
17
|
+
$schema: {
|
|
18
|
+
title: "Auto Approval",
|
|
19
|
+
type: "boolean",
|
|
20
|
+
description: "Whether to auto-approve the plan"
|
|
21
|
+
},
|
|
22
|
+
$default: false
|
|
23
|
+
},
|
|
24
|
+
planFile: {
|
|
25
|
+
$schema: {
|
|
26
|
+
title: "Plan File",
|
|
27
|
+
format: "path",
|
|
28
|
+
description: "The plan file",
|
|
29
|
+
type: "string"
|
|
30
|
+
},
|
|
31
|
+
$default: "plan.out"
|
|
32
|
+
},
|
|
33
|
+
formatWrite: {
|
|
34
|
+
$schema: {
|
|
35
|
+
title: "Format Write",
|
|
36
|
+
type: "boolean",
|
|
37
|
+
description: "Whether to format the files before writing"
|
|
38
|
+
},
|
|
39
|
+
$default: false
|
|
40
|
+
},
|
|
41
|
+
upgrade: {
|
|
42
|
+
$schema: {
|
|
43
|
+
title: "Upgrade",
|
|
44
|
+
type: "boolean",
|
|
45
|
+
description: "Whether to upgrade the modules"
|
|
46
|
+
},
|
|
47
|
+
$default: false
|
|
48
|
+
},
|
|
49
|
+
migrateState: {
|
|
50
|
+
$schema: {
|
|
51
|
+
title: "Migrate State",
|
|
52
|
+
type: "boolean",
|
|
53
|
+
description: "Whether to migrate the state"
|
|
54
|
+
},
|
|
55
|
+
$default: false
|
|
56
|
+
},
|
|
57
|
+
lock: {
|
|
58
|
+
$schema: {
|
|
59
|
+
title: "Lock",
|
|
60
|
+
type: "boolean",
|
|
61
|
+
description: "Whether to lock the state"
|
|
62
|
+
},
|
|
63
|
+
$default: false
|
|
64
|
+
},
|
|
65
|
+
varFile: {
|
|
66
|
+
$schema: {
|
|
67
|
+
title: "Var File",
|
|
68
|
+
format: "path",
|
|
69
|
+
type: "string",
|
|
70
|
+
description: "The variable file"
|
|
71
|
+
},
|
|
72
|
+
$default: "variables.tf"
|
|
73
|
+
},
|
|
74
|
+
varString: {
|
|
75
|
+
$schema: {
|
|
76
|
+
title: "Var String",
|
|
77
|
+
type: "string",
|
|
78
|
+
description: "The variable string"
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
reconfigure: {
|
|
82
|
+
$schema: {
|
|
83
|
+
title: "Reconfigure",
|
|
84
|
+
type: "boolean",
|
|
85
|
+
description: "Whether to reconfigure the state"
|
|
86
|
+
},
|
|
87
|
+
$default: false
|
|
88
|
+
}
|
|
89
|
+
});
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
exports.base_terraform_executor_untyped_default = base_terraform_executor_untyped_default;
|