@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.
Files changed (36) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/README.md +12 -54
  3. package/dist/src/base/base-terraform-executor.d.ts +98 -0
  4. package/dist/src/base/base-terraform-executor.schema.json +93 -0
  5. package/docs/api/base/base-terraform-executor.md +105 -0
  6. package/executors.json +16 -16
  7. package/generators.json +2 -2
  8. package/package.json +1 -1
  9. package/index.d.ts +0 -1
  10. package/index.js +0 -4911
  11. package/meta.json +0 -3395
  12. package/src/base/base-executor.d.ts +0 -24
  13. package/src/base/index.d.ts +0 -1
  14. package/src/executors/apply/executor.d.ts +0 -4
  15. package/src/executors/apply/executor.js +0 -4885
  16. package/src/executors/apply/schema.d.ts +0 -5
  17. package/src/executors/apply/schema.json +0 -21
  18. package/src/executors/destroy/executor.d.ts +0 -4
  19. package/src/executors/destroy/executor.js +0 -4885
  20. package/src/executors/destroy/schema.d.ts +0 -5
  21. package/src/executors/destroy/schema.json +0 -16
  22. package/src/executors/index.d.ts +0 -4
  23. package/src/executors/output/executor.d.ts +0 -5
  24. package/src/executors/output/executor.js +0 -4885
  25. package/src/executors/output/schema.d.ts +0 -1
  26. package/src/executors/output/schema.json +0 -10
  27. package/src/executors/plan/executor.d.ts +0 -4
  28. package/src/executors/plan/executor.js +0 -4885
  29. package/src/executors/plan/schema.d.ts +0 -5
  30. package/src/executors/plan/schema.json +0 -16
  31. package/src/generators/index.d.ts +0 -1
  32. package/src/generators/init/init.d.ts +0 -4
  33. package/src/generators/init/init.js +0 -39
  34. package/src/generators/init/schema.d.ts +0 -3
  35. package/src/generators/init/schema.json +0 -16
  36. package/src/index.d.ts +0 -3
@@ -1,5 +0,0 @@
1
- import { TerraformExecutorSchema } from "../../base/base-executor";
2
-
3
- export type DestroyExecutorSchema = Required<
4
- Pick<TerraformExecutorSchema, "autoApproval">
5
- >;
@@ -1,16 +0,0 @@
1
- {
2
- "$schema": "https://json-schema.org/schema",
3
- "version": 2,
4
- "outputCapture": "direct-nodejs",
5
- "title": "Terraform `destroy` Command Executor",
6
- "description": "Run the `destroy` command using the workspaces Terraform IoC configuration files",
7
- "type": "object",
8
- "properties": {
9
- "autoApproval": {
10
- "type": "boolean",
11
- "description": "A boolean flag to automatically approve the destroy",
12
- "default": false
13
- }
14
- },
15
- "required": []
16
- }
@@ -1,4 +0,0 @@
1
- export * from "./apply/executor";
2
- export * from "./destroy/executor";
3
- export * from "./output/executor";
4
- export * from "./plan/executor";
@@ -1,5 +0,0 @@
1
- import { OutputExecutorSchema } from "./schema";
2
- declare const _default: (_options: OutputExecutorSchema, context: import("@nx/devkit").ExecutorContext) => Promise<{
3
- success: boolean;
4
- }>;
5
- export default _default;