@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
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "https://json-schema.org/schema",
|
|
3
|
-
"version": 2,
|
|
4
|
-
"outputCapture": "direct-nodejs",
|
|
5
|
-
"title": "Terraform `apply` Command Executor",
|
|
6
|
-
"description": "Run the `apply` command using the workspaces Terraform IoC configuration files",
|
|
7
|
-
"type": "object",
|
|
8
|
-
"properties": {
|
|
9
|
-
"planFile": {
|
|
10
|
-
"type": "string",
|
|
11
|
-
"description": "The path to the plan file to create",
|
|
12
|
-
"default": "defaultplan"
|
|
13
|
-
},
|
|
14
|
-
"autoApproval": {
|
|
15
|
-
"type": "boolean",
|
|
16
|
-
"description": "A boolean flag to automatically approve the apply",
|
|
17
|
-
"default": false
|
|
18
|
-
}
|
|
19
|
-
},
|
|
20
|
-
"required": []
|
|
21
|
-
}
|