@storm-software/terraform-tools 0.45.2 → 0.45.4
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 +18 -0
- package/README.md +12 -54
- package/dist/src/base/base-terraform-executor.d.ts +98 -0
- package/dist/src/base/base-terraform-executor.schema.json +93 -0
- package/docs/api/base/base-terraform-executor.md +105 -0
- package/executors.json +16 -16
- package/generators.json +2 -2
- package/package.json +1 -1
- package/index.d.ts +0 -1
- package/index.js +0 -4911
- package/meta.json +0 -3395
- package/src/base/base-executor.d.ts +0 -24
- package/src/base/index.d.ts +0 -1
- package/src/executors/apply/executor.d.ts +0 -4
- package/src/executors/apply/executor.js +0 -4885
- package/src/executors/apply/schema.d.ts +0 -5
- package/src/executors/apply/schema.json +0 -21
- package/src/executors/destroy/executor.d.ts +0 -4
- package/src/executors/destroy/executor.js +0 -4885
- package/src/executors/destroy/schema.d.ts +0 -5
- package/src/executors/destroy/schema.json +0 -16
- package/src/executors/index.d.ts +0 -4
- package/src/executors/output/executor.d.ts +0 -5
- package/src/executors/output/executor.js +0 -4885
- package/src/executors/output/schema.d.ts +0 -1
- package/src/executors/output/schema.json +0 -10
- package/src/executors/plan/executor.d.ts +0 -4
- package/src/executors/plan/executor.js +0 -4885
- package/src/executors/plan/schema.d.ts +0 -5
- package/src/executors/plan/schema.json +0 -16
- package/src/generators/index.d.ts +0 -1
- package/src/generators/init/init.d.ts +0 -4
- package/src/generators/init/init.js +0 -39
- package/src/generators/init/schema.d.ts +0 -3
- package/src/generators/init/schema.json +0 -16
- package/src/index.d.ts +0 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
## 0.45.4 (2025-01-17)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
- **unbuild:** Update package to use `tsup-node` to exclude bundles ([cf712b2a](https://github.com/storm-software/storm-ops/commit/cf712b2a))
|
|
6
|
+
|
|
7
|
+
## 0.45.3 (2025-01-16)
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
- **workspace-tools:** Added additional externals to the package list
|
|
12
|
+
([5d4a063f](https://github.com/storm-software/storm-ops/commit/5d4a063f))
|
|
13
|
+
|
|
14
|
+
### Miscellaneous
|
|
15
|
+
|
|
16
|
+
- **monorepo:** Regenerate the README markdown files
|
|
17
|
+
([e911945a](https://github.com/storm-software/storm-ops/commit/e911945a))
|
|
18
|
+
|
|
1
19
|
## 0.45.2 (2025-01-16)
|
|
2
20
|
|
|
3
21
|
### 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 -->
|
|
@@ -40,26 +40,21 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
40
40
|
|
|
41
41
|
<!-- START doctoc -->
|
|
42
42
|
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
|
|
43
|
-
|
|
44
43
|
## Table of Contents
|
|
45
44
|
|
|
46
45
|
- [Storm Terraform Tools](#storm-terraform-tools)
|
|
47
46
|
- [Installing](#installing)
|
|
48
47
|
- [Executors](#executors)
|
|
49
|
-
- [
|
|
48
|
+
- [plan](#plan)
|
|
50
49
|
- [Example](#example)
|
|
51
|
-
|
|
52
|
-
- [Terraform `apply` Command Executor](#terraform-apply-command-executor)
|
|
50
|
+
- [apply](#apply)
|
|
53
51
|
- [Example](#example-1)
|
|
54
|
-
|
|
55
|
-
- [Terraform `output` Command Executor](#terraform-output-command-executor)
|
|
52
|
+
- [output](#output)
|
|
56
53
|
- [Example](#example-2)
|
|
57
|
-
- [
|
|
54
|
+
- [destroy](#destroy)
|
|
58
55
|
- [Example](#example-3)
|
|
59
|
-
- [Options](#options-2)
|
|
60
56
|
- [Generators](#generators)
|
|
61
|
-
- [
|
|
62
|
-
- [Options](#options-3)
|
|
57
|
+
- [init](#init)
|
|
63
58
|
- [Building](#building)
|
|
64
59
|
- [Running unit tests](#running-unit-tests)
|
|
65
60
|
- [Storm Workspaces](#storm-workspaces)
|
|
@@ -122,7 +117,7 @@ the workspace's projects:
|
|
|
122
117
|
<!-- markdownlint-disable -->
|
|
123
118
|
|
|
124
119
|
|
|
125
|
-
##
|
|
120
|
+
## plan
|
|
126
121
|
|
|
127
122
|
Run the \`plan\` command using the workspaces Terraform IoC configuration files
|
|
128
123
|
|
|
@@ -136,18 +131,9 @@ nx run my-project:plan
|
|
|
136
131
|
|
|
137
132
|
**Please note:** _The plan executor should be included in the desired projects's `project.json` file._
|
|
138
133
|
|
|
139
|
-
### Options
|
|
140
|
-
|
|
141
|
-
The following executor options are available:
|
|
142
|
-
|
|
143
|
-
| Option | Type | Description | Default |
|
|
144
|
-
| --------- | ------ | ------------- | --------- |
|
|
145
|
-
| planFile | `string` | The path to the plan file to create | "defaultplan" |
|
|
146
|
-
|
|
147
|
-
|
|
148
134
|
|
|
149
135
|
|
|
150
|
-
##
|
|
136
|
+
## apply
|
|
151
137
|
|
|
152
138
|
Run the \`apply\` command using the workspaces Terraform IoC configuration files
|
|
153
139
|
|
|
@@ -161,19 +147,9 @@ nx run my-project:apply
|
|
|
161
147
|
|
|
162
148
|
**Please note:** _The apply executor should be included in the desired projects's `project.json` file._
|
|
163
149
|
|
|
164
|
-
### Options
|
|
165
|
-
|
|
166
|
-
The following executor options are available:
|
|
167
|
-
|
|
168
|
-
| Option | Type | Description | Default |
|
|
169
|
-
| --------- | ------ | ------------- | --------- |
|
|
170
|
-
| planFile | `string` | The path to the plan file to create | "defaultplan" |
|
|
171
|
-
| autoApproval | `boolean` | A boolean flag to automatically approve the apply | |
|
|
172
|
-
|
|
173
|
-
|
|
174
150
|
|
|
175
151
|
|
|
176
|
-
##
|
|
152
|
+
## output
|
|
177
153
|
|
|
178
154
|
Run the \`output\` command using the workspaces Terraform IoC configuration files
|
|
179
155
|
|
|
@@ -189,7 +165,7 @@ nx run my-project:output
|
|
|
189
165
|
|
|
190
166
|
|
|
191
167
|
|
|
192
|
-
##
|
|
168
|
+
## destroy
|
|
193
169
|
|
|
194
170
|
Run the \`destroy\` command using the workspaces Terraform IoC configuration files
|
|
195
171
|
|
|
@@ -203,15 +179,6 @@ nx run my-project:destroy
|
|
|
203
179
|
|
|
204
180
|
**Please note:** _The destroy executor should be included in the desired projects's `project.json` file._
|
|
205
181
|
|
|
206
|
-
### Options
|
|
207
|
-
|
|
208
|
-
The following executor options are available:
|
|
209
|
-
|
|
210
|
-
| Option | Type | Description | Default |
|
|
211
|
-
| --------- | ------ | ------------- | --------- |
|
|
212
|
-
| autoApproval | `boolean` | A boolean flag to automatically approve the destroy | |
|
|
213
|
-
|
|
214
|
-
|
|
215
182
|
|
|
216
183
|
|
|
217
184
|
<!-- markdownlint-restore -->
|
|
@@ -229,18 +196,9 @@ management:
|
|
|
229
196
|
<!-- markdownlint-disable -->
|
|
230
197
|
|
|
231
198
|
|
|
232
|
-
##
|
|
233
|
-
|
|
234
|
-
Init Storm Terraform Tools Plugin.
|
|
235
|
-
|
|
236
|
-
### Options
|
|
237
|
-
|
|
238
|
-
The following executor options are available:
|
|
239
|
-
|
|
240
|
-
| Option | Type | Description | Default |
|
|
241
|
-
| --------- | ------ | ------------- | --------- |
|
|
242
|
-
| skipFormat | `boolean` | Skip formatting files. | |
|
|
199
|
+
## init
|
|
243
200
|
|
|
201
|
+
Initialize the `@storm-software/terraform-tools` plugin.
|
|
244
202
|
|
|
245
203
|
|
|
246
204
|
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
|
|
2
|
+
// Generated by @storm-software/untyped
|
|
3
|
+
// Do not edit this file directly
|
|
4
|
+
|
|
5
|
+
export interface BaseTerraformExecutorSchema {
|
|
6
|
+
/**
|
|
7
|
+
* Backend Config
|
|
8
|
+
*
|
|
9
|
+
* The backend configuration
|
|
10
|
+
*
|
|
11
|
+
*/
|
|
12
|
+
backendConfig?: Array<any>,
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* Auto Approval
|
|
16
|
+
*
|
|
17
|
+
* Whether to auto-approve the plan
|
|
18
|
+
*
|
|
19
|
+
* @default false
|
|
20
|
+
*/
|
|
21
|
+
autoApproval?: boolean,
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* Plan File
|
|
25
|
+
*
|
|
26
|
+
* The plan file
|
|
27
|
+
*
|
|
28
|
+
* @default "plan.out"
|
|
29
|
+
*
|
|
30
|
+
* @format path
|
|
31
|
+
*/
|
|
32
|
+
planFile?: string,
|
|
33
|
+
|
|
34
|
+
/**
|
|
35
|
+
* Format Write
|
|
36
|
+
*
|
|
37
|
+
* Whether to format the files before writing
|
|
38
|
+
*
|
|
39
|
+
* @default false
|
|
40
|
+
*/
|
|
41
|
+
formatWrite?: boolean,
|
|
42
|
+
|
|
43
|
+
/**
|
|
44
|
+
* Upgrade
|
|
45
|
+
*
|
|
46
|
+
* Whether to upgrade the modules
|
|
47
|
+
*
|
|
48
|
+
* @default false
|
|
49
|
+
*/
|
|
50
|
+
upgrade?: boolean,
|
|
51
|
+
|
|
52
|
+
/**
|
|
53
|
+
* Migrate State
|
|
54
|
+
*
|
|
55
|
+
* Whether to migrate the state
|
|
56
|
+
*
|
|
57
|
+
* @default false
|
|
58
|
+
*/
|
|
59
|
+
migrateState?: boolean,
|
|
60
|
+
|
|
61
|
+
/**
|
|
62
|
+
* Lock
|
|
63
|
+
*
|
|
64
|
+
* Whether to lock the state
|
|
65
|
+
*
|
|
66
|
+
* @default false
|
|
67
|
+
*/
|
|
68
|
+
lock?: boolean,
|
|
69
|
+
|
|
70
|
+
/**
|
|
71
|
+
* Var File
|
|
72
|
+
*
|
|
73
|
+
* The variable file
|
|
74
|
+
*
|
|
75
|
+
* @default "variables.tf"
|
|
76
|
+
*
|
|
77
|
+
* @format path
|
|
78
|
+
*/
|
|
79
|
+
varFile?: string,
|
|
80
|
+
|
|
81
|
+
/**
|
|
82
|
+
* Var String
|
|
83
|
+
*
|
|
84
|
+
* The variable string
|
|
85
|
+
*
|
|
86
|
+
*/
|
|
87
|
+
varString?: string,
|
|
88
|
+
|
|
89
|
+
/**
|
|
90
|
+
* Reconfigure
|
|
91
|
+
*
|
|
92
|
+
* Whether to reconfigure the state
|
|
93
|
+
*
|
|
94
|
+
* @default false
|
|
95
|
+
*/
|
|
96
|
+
reconfigure?: boolean,
|
|
97
|
+
}
|
|
98
|
+
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "Base Terraform Executor",
|
|
3
|
+
"description": "A base type definition for a Terraform executor schema",
|
|
4
|
+
"id": "#",
|
|
5
|
+
"properties": {
|
|
6
|
+
"backendConfig": {
|
|
7
|
+
"title": "Backend Config",
|
|
8
|
+
"type": "array",
|
|
9
|
+
"description": "The backend configuration",
|
|
10
|
+
"id": "#backendConfig",
|
|
11
|
+
"default": [],
|
|
12
|
+
"items": {
|
|
13
|
+
"type": "any"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"autoApproval": {
|
|
17
|
+
"title": "Auto Approval",
|
|
18
|
+
"type": "boolean",
|
|
19
|
+
"description": "Whether to auto-approve the plan",
|
|
20
|
+
"id": "#autoApproval",
|
|
21
|
+
"default": false
|
|
22
|
+
},
|
|
23
|
+
"planFile": {
|
|
24
|
+
"title": "Plan File",
|
|
25
|
+
"format": "path",
|
|
26
|
+
"description": "The plan file",
|
|
27
|
+
"type": "string",
|
|
28
|
+
"id": "#planFile",
|
|
29
|
+
"default": "plan.out"
|
|
30
|
+
},
|
|
31
|
+
"formatWrite": {
|
|
32
|
+
"title": "Format Write",
|
|
33
|
+
"type": "boolean",
|
|
34
|
+
"description": "Whether to format the files before writing",
|
|
35
|
+
"id": "#formatWrite",
|
|
36
|
+
"default": false
|
|
37
|
+
},
|
|
38
|
+
"upgrade": {
|
|
39
|
+
"title": "Upgrade",
|
|
40
|
+
"type": "boolean",
|
|
41
|
+
"description": "Whether to upgrade the modules",
|
|
42
|
+
"id": "#upgrade",
|
|
43
|
+
"default": false
|
|
44
|
+
},
|
|
45
|
+
"migrateState": {
|
|
46
|
+
"title": "Migrate State",
|
|
47
|
+
"type": "boolean",
|
|
48
|
+
"description": "Whether to migrate the state",
|
|
49
|
+
"id": "#migrateState",
|
|
50
|
+
"default": false
|
|
51
|
+
},
|
|
52
|
+
"lock": {
|
|
53
|
+
"title": "Lock",
|
|
54
|
+
"type": "boolean",
|
|
55
|
+
"description": "Whether to lock the state",
|
|
56
|
+
"id": "#lock",
|
|
57
|
+
"default": false
|
|
58
|
+
},
|
|
59
|
+
"varFile": {
|
|
60
|
+
"title": "Var File",
|
|
61
|
+
"format": "path",
|
|
62
|
+
"type": "string",
|
|
63
|
+
"description": "The variable file",
|
|
64
|
+
"id": "#varFile",
|
|
65
|
+
"default": "variables.tf"
|
|
66
|
+
},
|
|
67
|
+
"varString": {
|
|
68
|
+
"title": "Var String",
|
|
69
|
+
"type": "string",
|
|
70
|
+
"description": "The variable string",
|
|
71
|
+
"id": "#varString"
|
|
72
|
+
},
|
|
73
|
+
"reconfigure": {
|
|
74
|
+
"title": "Reconfigure",
|
|
75
|
+
"type": "boolean",
|
|
76
|
+
"description": "Whether to reconfigure the state",
|
|
77
|
+
"id": "#reconfigure",
|
|
78
|
+
"default": false
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
"type": "object",
|
|
82
|
+
"default": {
|
|
83
|
+
"backendConfig": [],
|
|
84
|
+
"autoApproval": false,
|
|
85
|
+
"planFile": "plan.out",
|
|
86
|
+
"formatWrite": false,
|
|
87
|
+
"upgrade": false,
|
|
88
|
+
"migrateState": false,
|
|
89
|
+
"lock": false,
|
|
90
|
+
"varFile": "variables.tf",
|
|
91
|
+
"reconfigure": false
|
|
92
|
+
}
|
|
93
|
+
}
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
|
|
2
|
+
<!-- Generated by @storm-software/untyped -->
|
|
3
|
+
<!-- Do not edit this file directly -->
|
|
4
|
+
|
|
5
|
+
# Base Terraform Executor
|
|
6
|
+
|
|
7
|
+
## `backendConfig`
|
|
8
|
+
- **Type**: `array`
|
|
9
|
+
- **Default**: `[]`
|
|
10
|
+
|
|
11
|
+
> Backend Config
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
The backend configuration
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## `autoApproval`
|
|
18
|
+
- **Type**: `boolean`
|
|
19
|
+
- **Default**: `false`
|
|
20
|
+
|
|
21
|
+
> Auto Approval
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
Whether to auto-approve the plan
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
## `planFile`
|
|
28
|
+
- **Type**: `string`
|
|
29
|
+
- **Default**: `"plan.out"`
|
|
30
|
+
|
|
31
|
+
> Plan File
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
The plan file
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
## `formatWrite`
|
|
38
|
+
- **Type**: `boolean`
|
|
39
|
+
- **Default**: `false`
|
|
40
|
+
|
|
41
|
+
> Format Write
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
Whether to format the files before writing
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
## `upgrade`
|
|
48
|
+
- **Type**: `boolean`
|
|
49
|
+
- **Default**: `false`
|
|
50
|
+
|
|
51
|
+
> Upgrade
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
Whether to upgrade the modules
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
## `migrateState`
|
|
58
|
+
- **Type**: `boolean`
|
|
59
|
+
- **Default**: `false`
|
|
60
|
+
|
|
61
|
+
> Migrate State
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
Whether to migrate the state
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
## `lock`
|
|
68
|
+
- **Type**: `boolean`
|
|
69
|
+
- **Default**: `false`
|
|
70
|
+
|
|
71
|
+
> Lock
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
Whether to lock the state
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
## `varFile`
|
|
78
|
+
- **Type**: `string`
|
|
79
|
+
- **Default**: `"variables.tf"`
|
|
80
|
+
|
|
81
|
+
> Var File
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
The variable file
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
## `varString`
|
|
88
|
+
- **Type**: `string`
|
|
89
|
+
|
|
90
|
+
> Var String
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
The variable string
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
## `reconfigure`
|
|
97
|
+
- **Type**: `boolean`
|
|
98
|
+
- **Default**: `false`
|
|
99
|
+
|
|
100
|
+
> Reconfigure
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
Whether to reconfigure the state
|
|
104
|
+
|
|
105
|
+
|
package/executors.json
CHANGED
|
@@ -1,45 +1,45 @@
|
|
|
1
1
|
{
|
|
2
2
|
"executors": {
|
|
3
3
|
"plan": {
|
|
4
|
-
"implementation": "./src/executors/plan/executor",
|
|
5
|
-
"schema": "./src/executors/plan/schema.json",
|
|
4
|
+
"implementation": "./dist/src/executors/plan/executor",
|
|
5
|
+
"schema": "./dist/src/executors/plan/schema.json",
|
|
6
6
|
"description": "Run the `plan` command using the workspaces Terraform IoC configuration files"
|
|
7
7
|
},
|
|
8
8
|
"apply": {
|
|
9
|
-
"implementation": "./src/executors/apply/executor",
|
|
10
|
-
"schema": "./src/executors/apply/schema.json",
|
|
9
|
+
"implementation": "./dist/src/executors/apply/executor",
|
|
10
|
+
"schema": "./dist/src/executors/apply/schema.json",
|
|
11
11
|
"description": "Run the `apply` command using the workspaces Terraform IoC configuration files"
|
|
12
12
|
},
|
|
13
13
|
"output": {
|
|
14
|
-
"implementation": "./src/executors/output/executor",
|
|
15
|
-
"schema": "./src/executors/output/schema.json",
|
|
14
|
+
"implementation": "./dist/src/executors/output/executor",
|
|
15
|
+
"schema": "./dist/src/executors/output/schema.json",
|
|
16
16
|
"description": "Run the `output` command using the workspaces Terraform IoC configuration files"
|
|
17
17
|
},
|
|
18
18
|
"destroy": {
|
|
19
|
-
"implementation": "./src/executors/destroy/executor",
|
|
20
|
-
"schema": "./src/executors/destroy/schema.json",
|
|
19
|
+
"implementation": "./dist/src/executors/destroy/executor",
|
|
20
|
+
"schema": "./dist/src/executors/destroy/schema.json",
|
|
21
21
|
"description": "Run the `destroy` command using the workspaces Terraform IoC configuration files"
|
|
22
22
|
}
|
|
23
23
|
},
|
|
24
24
|
"builders": {
|
|
25
25
|
"plan": {
|
|
26
|
-
"implementation": "./src/executors/plan/executor",
|
|
27
|
-
"schema": "./src/executors/plan/schema.json",
|
|
26
|
+
"implementation": "./dist/src/executors/plan/executor",
|
|
27
|
+
"schema": "./dist/src/executors/plan/schema.json",
|
|
28
28
|
"description": "Run the `plan` command using the workspaces Terraform IoC configuration files"
|
|
29
29
|
},
|
|
30
30
|
"apply": {
|
|
31
|
-
"implementation": "./src/executors/apply/executor",
|
|
32
|
-
"schema": "./src/executors/apply/schema.json",
|
|
31
|
+
"implementation": "./dist/src/executors/apply/executor",
|
|
32
|
+
"schema": "./dist/src/executors/apply/schema.json",
|
|
33
33
|
"description": "Run the `apply` command using the workspaces Terraform IoC configuration files"
|
|
34
34
|
},
|
|
35
35
|
"output": {
|
|
36
|
-
"implementation": "./src/executors/output/executor",
|
|
37
|
-
"schema": "./src/executors/output/schema.json",
|
|
36
|
+
"implementation": "./dist/src/executors/output/executor",
|
|
37
|
+
"schema": "./dist/src/executors/output/schema.json",
|
|
38
38
|
"description": "Run the `output` command using the workspaces Terraform IoC configuration files"
|
|
39
39
|
},
|
|
40
40
|
"destroy": {
|
|
41
|
-
"implementation": "./src/executors/destroy/executor",
|
|
42
|
-
"schema": "./src/executors/destroy/schema.json",
|
|
41
|
+
"implementation": "./dist/src/executors/destroy/executor",
|
|
42
|
+
"schema": "./dist/src/executors/destroy/schema.json",
|
|
43
43
|
"description": "Run the `destroy` command using the workspaces Terraform IoC configuration files"
|
|
44
44
|
}
|
|
45
45
|
}
|
package/generators.json
CHANGED
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
"version": "0.0.1",
|
|
5
5
|
"generators": {
|
|
6
6
|
"init": {
|
|
7
|
-
"factory": "./src/generators/init/init#initGenerator",
|
|
8
|
-
"schema": "./src/generators/init/schema.json",
|
|
7
|
+
"factory": "./dist/src/generators/init/init#initGenerator",
|
|
8
|
+
"schema": "./dist/src/generators/init/schema.json",
|
|
9
9
|
"description": "Initialize the `@storm-software/terraform-tools` plugin.",
|
|
10
10
|
"aliases": ["ng-add"],
|
|
11
11
|
"internal": true
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name":"@storm-software/terraform-tools","version":"0.45.
|
|
1
|
+
{"name":"@storm-software/terraform-tools","version":"0.45.4","description":"Tools for managing Terraform infrastructure within a Nx workspace.","repository":{"type":"github","url":"https://github.com/storm-software/storm-ops","directory":"packages/terraform-tools"},"homepage":"https://stormsoftware.com","bugs":"https://github.com/storm-software/storm-ops/issues","author":{"name":"Storm Software","email":"contact@stormsoftware.com","url":"https://stormsoftware.com"},"license":"Apache-2.0","private":false,"main":"dist/index.js","module":"dist/index.mjs","exports":{"./package.json":"./package.json","./docs/*":"./docs/*","./migrations.json":"./migrations.json","./executors.json":"./executors.json","./executors/*/schema.json":"./dist/src/executors/*/schema.json","./generators.json":"./generators.json","./generators/*/schema.json":"./dist/src/generators/*/schema.json",".":{"import":{"types":"./dist/index.d.mts","default":"./dist/index.mjs"},"require":{"types":"./dist/index.d.ts","default":"./dist/index.js"},"default":{"types":"./dist/index.d.ts","default":"./dist/index.js"}},"./index":{"import":{"types":"./dist/index.d.mts","default":"./dist/index.mjs"},"require":{"types":"./dist/index.d.ts","default":"./dist/index.js"},"default":{"types":"./dist/index.d.ts","default":"./dist/index.js"}},"./executors":{"import":{"types":"./dist/executors.d.mts","default":"./dist/executors.mjs"},"require":{"types":"./dist/executors.d.ts","default":"./dist/executors.js"},"default":{"types":"./dist/executors.d.ts","default":"./dist/executors.js"}},"./generators":{"import":{"types":"./dist/generators.d.mts","default":"./dist/generators.mjs"},"require":{"types":"./dist/generators.d.ts","default":"./dist/generators.js"},"default":{"types":"./dist/generators.d.ts","default":"./dist/generators.js"}},"./base":{"import":{"types":"./dist/src/base/index.d.mts","default":"./dist/src/base/index.mjs"},"require":{"types":"./dist/src/base/index.d.ts","default":"./dist/src/base/index.js"},"default":{"types":"./dist/src/base/index.d.ts","default":"./dist/src/base/index.js"}},"./base/*":{"import":{"types":"./dist/src/base/*.d.mts","default":"./dist/src/base/*.mjs"},"require":{"types":"./dist/src/base/*.d.ts","default":"./dist/src/base/*.js"},"default":{"types":"./dist/src/base/*.d.ts","default":"./dist/src/base/*.js"}},"./executors/*/executor.js":"./dist/src/executors/*/executor.js","./generators/*/init.js":"./dist/src/generators/*/init.js"},"typings":"dist/index.d.ts","keywords":["iac","infrastructure","monorepo","storm","storm-ops","storm-stack","sullivanpj","terraform"],"peerDependencies":{"@nx/devkit":"^20.3.1","@storm-software/workspace-tools":"workspace:*","nx":"^20.3.1"},"peerDependenciesMeta":{"@nx/devkit":{"optional":false},"@storm-software/workspace-tools":{"optional":false},"nx":{"optional":false}},"dependencies":{"@storm-software/workspace-tools":"workspace:*","shelljs":"^0.8.5","tslib":"^2.6.3"},"devDependencies":{"@nx/devkit":"^20.3.1","@types/node":"^22.10.2","nx":"^20.3.1","tsup":"8.3.5","untyped":"^1.5.2"},"publishConfig":{"access":"public"},"executors":"./executors.json","generators":"./generators.json"}
|
package/index.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./src";
|