@powerlines/plugin-terraform 0.1.269 → 0.1.270
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/dist/index.cjs +28 -2
- package/dist/index.d.cts +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/terraform-BgQMhrcm.d.cts +17 -0
- package/dist/terraform-BgQMhrcm.d.cts.map +1 -0
- package/dist/terraform-BgQMhrcm.d.mts +17 -0
- package/dist/terraform-BgQMhrcm.d.mts.map +1 -0
- package/dist/types/index.cjs +2 -0
- package/dist/types/index.d.cts +1 -1
- package/dist/types/index.d.mts +1 -1
- package/dist/types/index.mjs +3 -0
- package/dist/types/plugin.d.cts +1 -1
- package/dist/types/plugin.d.mts +1 -1
- package/dist/types/terraform.d.cts +2 -17
- package/dist/types/terraform.d.mts +2 -17
- package/package.json +3 -3
- package/dist/_virtual/_rolldown/runtime.cjs +0 -28
- package/dist/types/terraform.d.cts.map +0 -1
- package/dist/types/terraform.d.mts.map +0 -1
package/dist/index.cjs
CHANGED
|
@@ -1,9 +1,35 @@
|
|
|
1
1
|
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
|
|
2
|
-
|
|
2
|
+
//#region \0rolldown/runtime.js
|
|
3
|
+
var __create = Object.create;
|
|
4
|
+
var __defProp = Object.defineProperty;
|
|
5
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
6
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
7
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
8
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
9
|
+
var __copyProps = (to, from, except, desc) => {
|
|
10
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
11
|
+
for (var keys = __getOwnPropNames(from), i = 0, n = keys.length, key; i < n; i++) {
|
|
12
|
+
key = keys[i];
|
|
13
|
+
if (!__hasOwnProp.call(to, key) && key !== except) {
|
|
14
|
+
__defProp(to, key, {
|
|
15
|
+
get: ((k) => from[k]).bind(null, key),
|
|
16
|
+
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
17
|
+
});
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
return to;
|
|
22
|
+
};
|
|
23
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule || !__hasOwnProp.call(mod, "default") ? __defProp(target, "default", {
|
|
24
|
+
value: mod,
|
|
25
|
+
enumerable: true
|
|
26
|
+
}) : target, mod));
|
|
27
|
+
|
|
28
|
+
//#endregion
|
|
3
29
|
let _stryke_string_format_kebab_case = require("@stryke/string-format/kebab-case");
|
|
4
30
|
let _stryke_type_checks = require("@stryke/type-checks");
|
|
5
31
|
let defu = require("defu");
|
|
6
|
-
defu =
|
|
32
|
+
defu = __toESM(defu, 1);
|
|
7
33
|
let execa = require("execa");
|
|
8
34
|
let powerlines_plugin_utils = require("powerlines/plugin-utils");
|
|
9
35
|
let shelljs = require("shelljs");
|
package/dist/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { n as ResourceBody, r as TerraformContext, t as Resource } from "./terraform-BgQMhrcm.cjs";
|
|
2
2
|
import { TerraformPluginContext, TerraformPluginOptions, TerraformPluginResolvedConfig, TerraformPluginUserConfig } from "./types/plugin.cjs";
|
|
3
3
|
import "./types/index.cjs";
|
|
4
4
|
import { MaybePromise } from "@stryke/types/base";
|
package/dist/index.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { n as ResourceBody, r as TerraformContext, t as Resource } from "./terraform-BgQMhrcm.mjs";
|
|
2
2
|
import { TerraformPluginContext, TerraformPluginOptions, TerraformPluginResolvedConfig, TerraformPluginUserConfig } from "./types/plugin.mjs";
|
|
3
3
|
import "./types/index.mjs";
|
|
4
4
|
import { MaybePromise } from "@stryke/types/base";
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
//#region src/types/terraform.d.ts
|
|
2
|
+
interface ResourceBody {
|
|
3
|
+
[key: string]: string | boolean | number | ResourceBody | ResourceBody[];
|
|
4
|
+
}
|
|
5
|
+
interface Resource {
|
|
6
|
+
type: string;
|
|
7
|
+
name: string;
|
|
8
|
+
body: ResourceBody;
|
|
9
|
+
}
|
|
10
|
+
interface TerraformContext {
|
|
11
|
+
command: "terraform" | "tofu" | "terragrunt";
|
|
12
|
+
resources: Resource[];
|
|
13
|
+
[key: string]: any;
|
|
14
|
+
}
|
|
15
|
+
//#endregion
|
|
16
|
+
export { ResourceBody as n, TerraformContext as r, Resource as t };
|
|
17
|
+
//# sourceMappingURL=terraform-BgQMhrcm.d.cts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"terraform-BgQMhrcm.d.cts","names":[],"sources":["../src/types/terraform.ts"],"mappings":";UAkBiB;GACd,0CAA0C,eAAe;;UAG3C;EACf;EACA;EACA,MAAM;;UAGS;EACf;EACA,WAAW;GACV"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
//#region src/types/terraform.d.ts
|
|
2
|
+
interface ResourceBody {
|
|
3
|
+
[key: string]: string | boolean | number | ResourceBody | ResourceBody[];
|
|
4
|
+
}
|
|
5
|
+
interface Resource {
|
|
6
|
+
type: string;
|
|
7
|
+
name: string;
|
|
8
|
+
body: ResourceBody;
|
|
9
|
+
}
|
|
10
|
+
interface TerraformContext {
|
|
11
|
+
command: "terraform" | "tofu" | "terragrunt";
|
|
12
|
+
resources: Resource[];
|
|
13
|
+
[key: string]: any;
|
|
14
|
+
}
|
|
15
|
+
//#endregion
|
|
16
|
+
export { ResourceBody as n, TerraformContext as r, Resource as t };
|
|
17
|
+
//# sourceMappingURL=terraform-BgQMhrcm.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"terraform-BgQMhrcm.d.mts","names":[],"sources":["../src/types/terraform.ts"],"mappings":""}
|
package/dist/types/index.cjs
CHANGED
package/dist/types/index.d.cts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { n as ResourceBody, r as TerraformContext, t as Resource } from "../terraform-BgQMhrcm.cjs";
|
|
2
2
|
import { TerraformPluginContext, TerraformPluginOptions, TerraformPluginResolvedConfig, TerraformPluginUserConfig } from "./plugin.cjs";
|
|
3
3
|
export { Resource, ResourceBody, TerraformContext, TerraformPluginContext, TerraformPluginOptions, TerraformPluginResolvedConfig, TerraformPluginUserConfig };
|
package/dist/types/index.d.mts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { n as ResourceBody, r as TerraformContext, t as Resource } from "../terraform-BgQMhrcm.mjs";
|
|
2
2
|
import { TerraformPluginContext, TerraformPluginOptions, TerraformPluginResolvedConfig, TerraformPluginUserConfig } from "./plugin.mjs";
|
|
3
3
|
export { Resource, ResourceBody, TerraformContext, TerraformPluginContext, TerraformPluginOptions, TerraformPluginResolvedConfig, TerraformPluginUserConfig };
|
package/dist/types/index.mjs
CHANGED
package/dist/types/plugin.d.cts
CHANGED
package/dist/types/plugin.d.mts
CHANGED
|
@@ -1,17 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
[key: string]: string | boolean | number | ResourceBody | ResourceBody[];
|
|
4
|
-
}
|
|
5
|
-
interface Resource {
|
|
6
|
-
type: string;
|
|
7
|
-
name: string;
|
|
8
|
-
body: ResourceBody;
|
|
9
|
-
}
|
|
10
|
-
interface TerraformContext {
|
|
11
|
-
command: "terraform" | "tofu" | "terragrunt";
|
|
12
|
-
resources: Resource[];
|
|
13
|
-
[key: string]: any;
|
|
14
|
-
}
|
|
15
|
-
//#endregion
|
|
16
|
-
export { Resource, ResourceBody, TerraformContext };
|
|
17
|
-
//# sourceMappingURL=terraform.d.cts.map
|
|
1
|
+
import { n as ResourceBody, r as TerraformContext, t as Resource } from "../terraform-BgQMhrcm.cjs";
|
|
2
|
+
export { Resource, ResourceBody, TerraformContext };
|
|
@@ -1,17 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
[key: string]: string | boolean | number | ResourceBody | ResourceBody[];
|
|
4
|
-
}
|
|
5
|
-
interface Resource {
|
|
6
|
-
type: string;
|
|
7
|
-
name: string;
|
|
8
|
-
body: ResourceBody;
|
|
9
|
-
}
|
|
10
|
-
interface TerraformContext {
|
|
11
|
-
command: "terraform" | "tofu" | "terragrunt";
|
|
12
|
-
resources: Resource[];
|
|
13
|
-
[key: string]: any;
|
|
14
|
-
}
|
|
15
|
-
//#endregion
|
|
16
|
-
export { Resource, ResourceBody, TerraformContext };
|
|
17
|
-
//# sourceMappingURL=terraform.d.mts.map
|
|
1
|
+
import { n as ResourceBody, r as TerraformContext, t as Resource } from "../terraform-BgQMhrcm.mjs";
|
|
2
|
+
export { Resource, ResourceBody, TerraformContext };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/plugin-terraform",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.270",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "A Powerlines plugin to deploy infrastructure using Terraform.",
|
|
6
6
|
"keywords": [
|
|
@@ -122,9 +122,9 @@
|
|
|
122
122
|
"typescript": "^6.0.3"
|
|
123
123
|
},
|
|
124
124
|
"devDependencies": {
|
|
125
|
-
"@powerlines/plugin-plugin": "^0.12.
|
|
125
|
+
"@powerlines/plugin-plugin": "^0.12.621",
|
|
126
126
|
"@types/node": "^25.9.5"
|
|
127
127
|
},
|
|
128
128
|
"publishConfig": { "access": "public" },
|
|
129
|
-
"gitHead": "
|
|
129
|
+
"gitHead": "a060bb776b719e7628c30f82d4fb4305fbcd1581"
|
|
130
130
|
}
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
//#region \0rolldown/runtime.js
|
|
2
|
-
var __create = Object.create;
|
|
3
|
-
var __defProp = Object.defineProperty;
|
|
4
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
-
var __getProtoOf = Object.getPrototypeOf;
|
|
7
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
-
var __copyProps = (to, from, except, desc) => {
|
|
9
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
|
10
|
-
for (var keys = __getOwnPropNames(from), i = 0, n = keys.length, key; i < n; i++) {
|
|
11
|
-
key = keys[i];
|
|
12
|
-
if (!__hasOwnProp.call(to, key) && key !== except) {
|
|
13
|
-
__defProp(to, key, {
|
|
14
|
-
get: ((k) => from[k]).bind(null, key),
|
|
15
|
-
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
16
|
-
});
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
|
-
}
|
|
20
|
-
return to;
|
|
21
|
-
};
|
|
22
|
-
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule || !__hasOwnProp.call(mod, "default") ? __defProp(target, "default", {
|
|
23
|
-
value: mod,
|
|
24
|
-
enumerable: true
|
|
25
|
-
}) : target, mod));
|
|
26
|
-
|
|
27
|
-
//#endregion
|
|
28
|
-
exports.__toESM = __toESM;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"terraform.d.cts","names":[],"sources":["../../src/types/terraform.ts"],"mappings":";UAkBiB;GACd,0CAA0C,eAAe;;UAG3C;EACf;EACA;EACA,MAAM;;UAGS;EACf;EACA,WAAW;GACV"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"terraform.d.mts","names":[],"sources":["../../src/types/terraform.ts"],"mappings":""}
|