@storm-software/pulumi-tools 0.22.110 → 0.22.111
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 +8 -0
- package/dist/{chunk-CXM2SZMA.mjs → chunk-3KZ47REH.mjs} +1 -1
- package/dist/{chunk-V2EY6R4R.mjs → chunk-5URFMIUF.mjs} +1 -1
- package/dist/chunk-DW34CBLC.mjs +133 -0
- package/dist/{chunk-ZWNI77JY.mjs → chunk-ELOZU7H3.mjs} +1 -1
- package/dist/{chunk-U5DXBMYG.mjs → chunk-K5HG736E.mjs} +1 -1
- package/dist/{chunk-KPNSNVCQ.mjs → chunk-MJ2KYKV4.mjs} +1 -1
- package/dist/{chunk-E7NASPNK.mjs → chunk-NFZEO7IE.mjs} +1 -1
- package/dist/{chunk-EEQQFOTE.mjs → chunk-P6T7P7PS.mjs} +1 -1
- package/dist/chunk-Q3OADP6T.js +133 -0
- package/dist/{chunk-GNVCY6LO.mjs → chunk-SJ36N6KX.mjs} +1 -1
- package/dist/{chunk-QMS2AUQD.mjs → chunk-YQTLVPXN.mjs} +1 -1
- package/dist/executors.js +1 -1
- package/dist/executors.mjs +8 -8
- package/dist/generators.js +3 -3
- package/dist/generators.mjs +3 -3
- package/dist/index.js +7 -7
- package/dist/index.mjs +12 -12
- package/dist/src/base/base-executor.mjs +3 -3
- package/dist/src/base/index.js +3 -3
- package/dist/src/base/index.mjs +5 -5
- package/dist/src/base/providers.mjs +1 -1
- package/dist/src/executors/config/executor.mjs +4 -4
- package/dist/src/executors/import/executor.mjs +4 -4
- package/dist/src/executors/preview/executor.mjs +4 -4
- package/dist/src/executors/refresh/executor.mjs +4 -4
- package/dist/src/executors/up/executor.mjs +4 -4
- package/dist/src/generators/init/generator.js +3 -3
- package/dist/src/generators/init/generator.mjs +3 -3
- package/dist/src/lib/aws/index.mjs +1 -1
- package/dist/src/lib/aws/providers.mjs +1 -1
- package/dist/tsup.config.mjs +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Pulumi Tools
|
|
4
4
|
|
|
5
|
+
## [0.22.110](https://github.com/storm-software/storm-ops/releases/tag/pulumi-tools%400.22.110) (03/07/2026)
|
|
6
|
+
|
|
7
|
+
### Updated Dependencies
|
|
8
|
+
|
|
9
|
+
- Updated **workspace-tools** to **v1.294.54**
|
|
10
|
+
- Updated **config-tools** to **v1.189.21**
|
|
11
|
+
- Updated **config** to **v1.135.22**
|
|
12
|
+
|
|
5
13
|
## [0.22.109](https://github.com/storm-software/storm-ops/releases/tag/pulumi-tools%400.22.109) (03/07/2026)
|
|
6
14
|
|
|
7
15
|
### Miscellaneous
|
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
import {
|
|
2
|
+
initGenerator,
|
|
3
|
+
run,
|
|
4
|
+
withRunGenerator
|
|
5
|
+
} from "./chunk-MJ2KYKV4.mjs";
|
|
6
|
+
import {
|
|
7
|
+
getCloudTemplateName
|
|
8
|
+
} from "./chunk-5TB4HFDP.mjs";
|
|
9
|
+
|
|
10
|
+
// src/generators/init/generator.ts
|
|
11
|
+
import {
|
|
12
|
+
addDependenciesToPackageJson,
|
|
13
|
+
addProjectConfiguration,
|
|
14
|
+
formatFiles,
|
|
15
|
+
readJsonFile,
|
|
16
|
+
runTasksInSerial
|
|
17
|
+
} from "@nx/devkit";
|
|
18
|
+
import { readFileSync, unlinkSync } from "node:fs";
|
|
19
|
+
import { join } from "node:path";
|
|
20
|
+
async function initGeneratorFn(tree, options, config) {
|
|
21
|
+
const task = initGenerator(tree, options);
|
|
22
|
+
addProjectConfiguration(tree, options.name || "deployment", {
|
|
23
|
+
root: options.directory || "./deployment",
|
|
24
|
+
projectType: "application",
|
|
25
|
+
sourceRoot: options.directory || "./deployment",
|
|
26
|
+
targets: {
|
|
27
|
+
up: {
|
|
28
|
+
executor: "@nx-extend/pulumi:up",
|
|
29
|
+
options: {}
|
|
30
|
+
},
|
|
31
|
+
preview: {
|
|
32
|
+
executor: "@nx-extend/pulumi:preview",
|
|
33
|
+
options: {}
|
|
34
|
+
},
|
|
35
|
+
refresh: {
|
|
36
|
+
executor: "@nx-extend/pulumi:refresh",
|
|
37
|
+
options: {}
|
|
38
|
+
},
|
|
39
|
+
import: {
|
|
40
|
+
executor: "@nx-extend/pulumi:import",
|
|
41
|
+
options: {}
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
tags: ["infra:pulumi"]
|
|
45
|
+
});
|
|
46
|
+
await runTasksInSerial(
|
|
47
|
+
generateNewPulumiProject(tree, options, config),
|
|
48
|
+
loginToPulumi(tree, options, config),
|
|
49
|
+
addPulumiDeps(tree, options),
|
|
50
|
+
cleanupProject(tree, options)
|
|
51
|
+
)();
|
|
52
|
+
if (!options.skipFormat) {
|
|
53
|
+
await formatFiles(tree);
|
|
54
|
+
}
|
|
55
|
+
return task;
|
|
56
|
+
}
|
|
57
|
+
var generator_default = withRunGenerator(
|
|
58
|
+
"Initialize Storm Pulumi workspace",
|
|
59
|
+
initGeneratorFn
|
|
60
|
+
);
|
|
61
|
+
function generateNewPulumiProject(tree, options, config) {
|
|
62
|
+
return () => {
|
|
63
|
+
const template = getCloudTemplateName(options.provider);
|
|
64
|
+
run(
|
|
65
|
+
config,
|
|
66
|
+
[
|
|
67
|
+
`pulumi new ${template}`,
|
|
68
|
+
`--name=${options.name || "deployment"}`,
|
|
69
|
+
`--dir=${options.directory || "./deployment"}`,
|
|
70
|
+
options.secretsProvider && `--secrets-provider=${options.secretsProvider}`,
|
|
71
|
+
"--generate-only",
|
|
72
|
+
"--yes",
|
|
73
|
+
"--force"
|
|
74
|
+
].filter(Boolean).join(" "),
|
|
75
|
+
join(config.workspaceRoot, options.directory || "./deployment"),
|
|
76
|
+
"inherit"
|
|
77
|
+
);
|
|
78
|
+
};
|
|
79
|
+
}
|
|
80
|
+
function loginToPulumi(tree, options, config) {
|
|
81
|
+
return () => {
|
|
82
|
+
if (!options.login) {
|
|
83
|
+
return;
|
|
84
|
+
}
|
|
85
|
+
if (options.login.startsWith("file://")) {
|
|
86
|
+
options.login = `file://${tree.root}/${options.directory || "./deployment"}/${options.login.replace("file://", "")}`;
|
|
87
|
+
}
|
|
88
|
+
run(
|
|
89
|
+
config,
|
|
90
|
+
["pulumi login", options.login].filter(Boolean).join(" "),
|
|
91
|
+
join(config.workspaceRoot, options.directory || "./deployment"),
|
|
92
|
+
"inherit",
|
|
93
|
+
{
|
|
94
|
+
...process.env,
|
|
95
|
+
PULUMI_EXPERIMENTAL: "true"
|
|
96
|
+
}
|
|
97
|
+
);
|
|
98
|
+
};
|
|
99
|
+
}
|
|
100
|
+
function addPulumiDeps(tree, options) {
|
|
101
|
+
return () => {
|
|
102
|
+
const packageJson = readJsonFile(`${options.directory}/package.json`);
|
|
103
|
+
if (packageJson) {
|
|
104
|
+
addDependenciesToPackageJson(tree, {}, packageJson.dependencies || {})();
|
|
105
|
+
}
|
|
106
|
+
};
|
|
107
|
+
}
|
|
108
|
+
function cleanupProject(tree, options) {
|
|
109
|
+
return () => {
|
|
110
|
+
const indexTsLocation = join(
|
|
111
|
+
tree.root,
|
|
112
|
+
`${options.directory || "./deployment"}/index.ts`
|
|
113
|
+
);
|
|
114
|
+
tree.write(
|
|
115
|
+
`${options.directory}/pulumi.ts`,
|
|
116
|
+
readFileSync(indexTsLocation).toString()
|
|
117
|
+
);
|
|
118
|
+
unlinkSync(
|
|
119
|
+
join(tree.root, `${options.directory || "./deployment"}/.gitignore`)
|
|
120
|
+
);
|
|
121
|
+
unlinkSync(
|
|
122
|
+
join(tree.root, `${options.directory || "./deployment"}/package.json`)
|
|
123
|
+
);
|
|
124
|
+
unlinkSync(
|
|
125
|
+
join(tree.root, `${options.directory || "./deployment"}/tsconfig.json`)
|
|
126
|
+
);
|
|
127
|
+
};
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
export {
|
|
131
|
+
initGeneratorFn,
|
|
132
|
+
generator_default
|
|
133
|
+
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// ../../node_modules/.pnpm/tsup@8.4.0_patch_hash=
|
|
1
|
+
// ../../node_modules/.pnpm/tsup@8.4.0_patch_hash=751a554d775c3572381af4e7e5fa22eeda6dd6856012fb1cf521d6806eb2dc74__008a54d3eaeaa383d843d27c70975cf9/node_modules/tsup/assets/esm_shims.js
|
|
2
2
|
import { fileURLToPath } from "url";
|
|
3
3
|
import path from "path";
|
|
4
4
|
var getFilename = () => fileURLToPath(import.meta.url);
|
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
var _chunkV5WYZRAMjs = require('./chunk-V5WYZRAM.js');
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
var _chunkQDPXTR73js = require('./chunk-QDPXTR73.js');
|
|
9
|
+
|
|
10
|
+
// src/generators/init/generator.ts
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
var _devkit = require('@nx/devkit');
|
|
18
|
+
var _fs = require('fs');
|
|
19
|
+
var _path = require('path');
|
|
20
|
+
async function initGeneratorFn(tree, options, config) {
|
|
21
|
+
const task = _chunkV5WYZRAMjs.initGenerator.call(void 0, tree, options);
|
|
22
|
+
_devkit.addProjectConfiguration.call(void 0, tree, options.name || "deployment", {
|
|
23
|
+
root: options.directory || "./deployment",
|
|
24
|
+
projectType: "application",
|
|
25
|
+
sourceRoot: options.directory || "./deployment",
|
|
26
|
+
targets: {
|
|
27
|
+
up: {
|
|
28
|
+
executor: "@nx-extend/pulumi:up",
|
|
29
|
+
options: {}
|
|
30
|
+
},
|
|
31
|
+
preview: {
|
|
32
|
+
executor: "@nx-extend/pulumi:preview",
|
|
33
|
+
options: {}
|
|
34
|
+
},
|
|
35
|
+
refresh: {
|
|
36
|
+
executor: "@nx-extend/pulumi:refresh",
|
|
37
|
+
options: {}
|
|
38
|
+
},
|
|
39
|
+
import: {
|
|
40
|
+
executor: "@nx-extend/pulumi:import",
|
|
41
|
+
options: {}
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
tags: ["infra:pulumi"]
|
|
45
|
+
});
|
|
46
|
+
await _devkit.runTasksInSerial.call(void 0,
|
|
47
|
+
generateNewPulumiProject(tree, options, config),
|
|
48
|
+
loginToPulumi(tree, options, config),
|
|
49
|
+
addPulumiDeps(tree, options),
|
|
50
|
+
cleanupProject(tree, options)
|
|
51
|
+
)();
|
|
52
|
+
if (!options.skipFormat) {
|
|
53
|
+
await _devkit.formatFiles.call(void 0, tree);
|
|
54
|
+
}
|
|
55
|
+
return task;
|
|
56
|
+
}
|
|
57
|
+
var generator_default = _chunkV5WYZRAMjs.withRunGenerator.call(void 0,
|
|
58
|
+
"Initialize Storm Pulumi workspace",
|
|
59
|
+
initGeneratorFn
|
|
60
|
+
);
|
|
61
|
+
function generateNewPulumiProject(tree, options, config) {
|
|
62
|
+
return () => {
|
|
63
|
+
const template = _chunkQDPXTR73js.getCloudTemplateName.call(void 0, options.provider);
|
|
64
|
+
_chunkV5WYZRAMjs.run.call(void 0,
|
|
65
|
+
config,
|
|
66
|
+
[
|
|
67
|
+
`pulumi new ${template}`,
|
|
68
|
+
`--name=${options.name || "deployment"}`,
|
|
69
|
+
`--dir=${options.directory || "./deployment"}`,
|
|
70
|
+
options.secretsProvider && `--secrets-provider=${options.secretsProvider}`,
|
|
71
|
+
"--generate-only",
|
|
72
|
+
"--yes",
|
|
73
|
+
"--force"
|
|
74
|
+
].filter(Boolean).join(" "),
|
|
75
|
+
_path.join.call(void 0, config.workspaceRoot, options.directory || "./deployment"),
|
|
76
|
+
"inherit"
|
|
77
|
+
);
|
|
78
|
+
};
|
|
79
|
+
}
|
|
80
|
+
function loginToPulumi(tree, options, config) {
|
|
81
|
+
return () => {
|
|
82
|
+
if (!options.login) {
|
|
83
|
+
return;
|
|
84
|
+
}
|
|
85
|
+
if (options.login.startsWith("file://")) {
|
|
86
|
+
options.login = `file://${tree.root}/${options.directory || "./deployment"}/${options.login.replace("file://", "")}`;
|
|
87
|
+
}
|
|
88
|
+
_chunkV5WYZRAMjs.run.call(void 0,
|
|
89
|
+
config,
|
|
90
|
+
["pulumi login", options.login].filter(Boolean).join(" "),
|
|
91
|
+
_path.join.call(void 0, config.workspaceRoot, options.directory || "./deployment"),
|
|
92
|
+
"inherit",
|
|
93
|
+
{
|
|
94
|
+
...process.env,
|
|
95
|
+
PULUMI_EXPERIMENTAL: "true"
|
|
96
|
+
}
|
|
97
|
+
);
|
|
98
|
+
};
|
|
99
|
+
}
|
|
100
|
+
function addPulumiDeps(tree, options) {
|
|
101
|
+
return () => {
|
|
102
|
+
const packageJson = _devkit.readJsonFile.call(void 0, `${options.directory}/package.json`);
|
|
103
|
+
if (packageJson) {
|
|
104
|
+
_devkit.addDependenciesToPackageJson.call(void 0, tree, {}, packageJson.dependencies || {})();
|
|
105
|
+
}
|
|
106
|
+
};
|
|
107
|
+
}
|
|
108
|
+
function cleanupProject(tree, options) {
|
|
109
|
+
return () => {
|
|
110
|
+
const indexTsLocation = _path.join.call(void 0,
|
|
111
|
+
tree.root,
|
|
112
|
+
`${options.directory || "./deployment"}/index.ts`
|
|
113
|
+
);
|
|
114
|
+
tree.write(
|
|
115
|
+
`${options.directory}/pulumi.ts`,
|
|
116
|
+
_fs.readFileSync.call(void 0, indexTsLocation).toString()
|
|
117
|
+
);
|
|
118
|
+
_fs.unlinkSync.call(void 0,
|
|
119
|
+
_path.join.call(void 0, tree.root, `${options.directory || "./deployment"}/.gitignore`)
|
|
120
|
+
);
|
|
121
|
+
_fs.unlinkSync.call(void 0,
|
|
122
|
+
_path.join.call(void 0, tree.root, `${options.directory || "./deployment"}/package.json`)
|
|
123
|
+
);
|
|
124
|
+
_fs.unlinkSync.call(void 0,
|
|
125
|
+
_path.join.call(void 0, tree.root, `${options.directory || "./deployment"}/tsconfig.json`)
|
|
126
|
+
);
|
|
127
|
+
};
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
|
|
133
|
+
exports.initGeneratorFn = initGeneratorFn; exports.generator_default = generator_default;
|
package/dist/executors.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";require('./chunk-XO62WWX4.js');
|
|
2
|
+
require('./chunk-BZCHMDFB.js');
|
|
2
3
|
require('./chunk-MOKMEXOP.js');
|
|
3
4
|
require('./chunk-X35P3F4C.js');
|
|
4
5
|
require('./chunk-WLLZYFYK.js');
|
|
5
6
|
require('./chunk-DYYBJL2Q.js');
|
|
6
|
-
require('./chunk-BZCHMDFB.js');
|
|
7
7
|
require('./chunk-KLWELHFB.js');
|
|
8
8
|
require('./chunk-V5WYZRAM.js');
|
package/dist/executors.mjs
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import "./chunk-UV4HQO3Y.mjs";
|
|
2
|
-
import "./chunk-
|
|
3
|
-
import "./chunk-
|
|
4
|
-
import "./chunk-
|
|
5
|
-
import "./chunk-
|
|
6
|
-
import "./chunk-
|
|
7
|
-
import "./chunk-
|
|
8
|
-
import "./chunk-
|
|
9
|
-
import "./chunk-
|
|
2
|
+
import "./chunk-SJ36N6KX.mjs";
|
|
3
|
+
import "./chunk-P6T7P7PS.mjs";
|
|
4
|
+
import "./chunk-NFZEO7IE.mjs";
|
|
5
|
+
import "./chunk-3KZ47REH.mjs";
|
|
6
|
+
import "./chunk-YQTLVPXN.mjs";
|
|
7
|
+
import "./chunk-K5HG736E.mjs";
|
|
8
|
+
import "./chunk-MJ2KYKV4.mjs";
|
|
9
|
+
import "./chunk-ELOZU7H3.mjs";
|
package/dist/generators.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-N2YKXZ5R.js');
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
5
|
-
require('./chunk-QDPXTR73.js');
|
|
4
|
+
var _chunkQ3OADP6Tjs = require('./chunk-Q3OADP6T.js');
|
|
6
5
|
require('./chunk-V5WYZRAM.js');
|
|
6
|
+
require('./chunk-QDPXTR73.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
exports.initGeneratorFn =
|
|
9
|
+
exports.initGeneratorFn = _chunkQ3OADP6Tjs.initGeneratorFn;
|
package/dist/generators.mjs
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import "./chunk-23KFTIT2.mjs";
|
|
2
2
|
import {
|
|
3
3
|
initGeneratorFn
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-DW34CBLC.mjs";
|
|
5
|
+
import "./chunk-MJ2KYKV4.mjs";
|
|
5
6
|
import "./chunk-5TB4HFDP.mjs";
|
|
6
|
-
import "./chunk-
|
|
7
|
-
import "./chunk-ZWNI77JY.mjs";
|
|
7
|
+
import "./chunk-ELOZU7H3.mjs";
|
|
8
8
|
export {
|
|
9
9
|
initGeneratorFn
|
|
10
10
|
};
|
package/dist/index.js
CHANGED
|
@@ -8,24 +8,24 @@
|
|
|
8
8
|
|
|
9
9
|
var _chunk7I63VQP3js = require('./chunk-7I63VQP3.js');
|
|
10
10
|
require('./chunk-XO62WWX4.js');
|
|
11
|
+
require('./chunk-BZCHMDFB.js');
|
|
11
12
|
require('./chunk-MOKMEXOP.js');
|
|
12
13
|
require('./chunk-X35P3F4C.js');
|
|
13
14
|
require('./chunk-WLLZYFYK.js');
|
|
14
15
|
require('./chunk-DYYBJL2Q.js');
|
|
15
16
|
require('./chunk-N2YKXZ5R.js');
|
|
17
|
+
require('./chunk-GUQOEBFW.js');
|
|
16
18
|
|
|
17
19
|
|
|
18
|
-
var
|
|
19
|
-
require('./chunk-GUQOEBFW.js');
|
|
20
|
+
var _chunkKLWELHFBjs = require('./chunk-KLWELHFB.js');
|
|
20
21
|
|
|
21
22
|
|
|
23
|
+
var _chunkQ3OADP6Tjs = require('./chunk-Q3OADP6T.js');
|
|
24
|
+
require('./chunk-V5WYZRAM.js');
|
|
22
25
|
|
|
23
|
-
var _chunkQDPXTR73js = require('./chunk-QDPXTR73.js');
|
|
24
|
-
require('./chunk-BZCHMDFB.js');
|
|
25
26
|
|
|
26
27
|
|
|
27
|
-
var
|
|
28
|
-
require('./chunk-V5WYZRAM.js');
|
|
28
|
+
var _chunkQDPXTR73js = require('./chunk-QDPXTR73.js');
|
|
29
29
|
|
|
30
30
|
|
|
31
31
|
|
|
@@ -37,4 +37,4 @@ require('./chunk-V5WYZRAM.js');
|
|
|
37
37
|
|
|
38
38
|
|
|
39
39
|
|
|
40
|
-
exports.Provider = _chunkQDPXTR73js.Provider; exports.ec2Instance = _chunk7I63VQP3js.ec2Instance; exports.getAWSTemplateName = _chunk7I63VQP3js.getAWSTemplateName; exports.getCloudTemplateName = _chunkQDPXTR73js.getCloudTemplateName; exports.getProviderOpts = _chunk7I63VQP3js.getProviderOpts; exports.initGeneratorFn =
|
|
40
|
+
exports.Provider = _chunkQDPXTR73js.Provider; exports.ec2Instance = _chunk7I63VQP3js.ec2Instance; exports.getAWSTemplateName = _chunk7I63VQP3js.getAWSTemplateName; exports.getCloudTemplateName = _chunkQDPXTR73js.getCloudTemplateName; exports.getProviderOpts = _chunk7I63VQP3js.getProviderOpts; exports.initGeneratorFn = _chunkQ3OADP6Tjs.initGeneratorFn; exports.securityGroup = _chunk7I63VQP3js.securityGroup; exports.subnet = _chunk7I63VQP3js.subnet; exports.vpc = _chunk7I63VQP3js.vpc; exports.withPulumiExecutor = _chunkKLWELHFBjs.withPulumiExecutor;
|
package/dist/index.mjs
CHANGED
|
@@ -8,25 +8,25 @@ import {
|
|
|
8
8
|
vpc
|
|
9
9
|
} from "./chunk-S6XCS2TA.mjs";
|
|
10
10
|
import "./chunk-UV4HQO3Y.mjs";
|
|
11
|
-
import "./chunk-
|
|
12
|
-
import "./chunk-
|
|
13
|
-
import "./chunk-
|
|
14
|
-
import "./chunk-
|
|
11
|
+
import "./chunk-SJ36N6KX.mjs";
|
|
12
|
+
import "./chunk-P6T7P7PS.mjs";
|
|
13
|
+
import "./chunk-NFZEO7IE.mjs";
|
|
14
|
+
import "./chunk-3KZ47REH.mjs";
|
|
15
|
+
import "./chunk-YQTLVPXN.mjs";
|
|
15
16
|
import "./chunk-23KFTIT2.mjs";
|
|
17
|
+
import "./chunk-CA7S5MOH.mjs";
|
|
18
|
+
import {
|
|
19
|
+
withPulumiExecutor
|
|
20
|
+
} from "./chunk-K5HG736E.mjs";
|
|
16
21
|
import {
|
|
17
22
|
initGeneratorFn
|
|
18
|
-
} from "./chunk-
|
|
19
|
-
import "./chunk-
|
|
23
|
+
} from "./chunk-DW34CBLC.mjs";
|
|
24
|
+
import "./chunk-MJ2KYKV4.mjs";
|
|
20
25
|
import {
|
|
21
26
|
Provider,
|
|
22
27
|
getCloudTemplateName
|
|
23
28
|
} from "./chunk-5TB4HFDP.mjs";
|
|
24
|
-
import "./chunk-
|
|
25
|
-
import {
|
|
26
|
-
withPulumiExecutor
|
|
27
|
-
} from "./chunk-U5DXBMYG.mjs";
|
|
28
|
-
import "./chunk-KPNSNVCQ.mjs";
|
|
29
|
-
import "./chunk-ZWNI77JY.mjs";
|
|
29
|
+
import "./chunk-ELOZU7H3.mjs";
|
|
30
30
|
export {
|
|
31
31
|
Provider,
|
|
32
32
|
ec2Instance,
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
withPulumiExecutor
|
|
3
|
-
} from "../../chunk-
|
|
4
|
-
import "../../chunk-
|
|
5
|
-
import "../../chunk-
|
|
3
|
+
} from "../../chunk-K5HG736E.mjs";
|
|
4
|
+
import "../../chunk-MJ2KYKV4.mjs";
|
|
5
|
+
import "../../chunk-ELOZU7H3.mjs";
|
|
6
6
|
export {
|
|
7
7
|
withPulumiExecutor
|
|
8
8
|
};
|
package/dist/src/base/index.js
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});require('../../chunk-GUQOEBFW.js');
|
|
2
2
|
|
|
3
3
|
|
|
4
|
+
var _chunkKLWELHFBjs = require('../../chunk-KLWELHFB.js');
|
|
5
|
+
require('../../chunk-V5WYZRAM.js');
|
|
4
6
|
|
|
5
|
-
var _chunkQDPXTR73js = require('../../chunk-QDPXTR73.js');
|
|
6
7
|
|
|
7
8
|
|
|
8
|
-
var
|
|
9
|
-
require('../../chunk-V5WYZRAM.js');
|
|
9
|
+
var _chunkQDPXTR73js = require('../../chunk-QDPXTR73.js');
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
|
package/dist/src/base/index.mjs
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import "../../chunk-CA7S5MOH.mjs";
|
|
2
|
+
import {
|
|
3
|
+
withPulumiExecutor
|
|
4
|
+
} from "../../chunk-K5HG736E.mjs";
|
|
5
|
+
import "../../chunk-MJ2KYKV4.mjs";
|
|
2
6
|
import {
|
|
3
7
|
Provider,
|
|
4
8
|
getCloudTemplateName
|
|
5
9
|
} from "../../chunk-5TB4HFDP.mjs";
|
|
6
|
-
import
|
|
7
|
-
withPulumiExecutor
|
|
8
|
-
} from "../../chunk-U5DXBMYG.mjs";
|
|
9
|
-
import "../../chunk-KPNSNVCQ.mjs";
|
|
10
|
-
import "../../chunk-ZWNI77JY.mjs";
|
|
10
|
+
import "../../chunk-ELOZU7H3.mjs";
|
|
11
11
|
export {
|
|
12
12
|
Provider,
|
|
13
13
|
getCloudTemplateName,
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
executor_default
|
|
3
|
-
} from "../../../chunk-
|
|
4
|
-
import "../../../chunk-
|
|
5
|
-
import "../../../chunk-
|
|
6
|
-
import "../../../chunk-
|
|
3
|
+
} from "../../../chunk-SJ36N6KX.mjs";
|
|
4
|
+
import "../../../chunk-K5HG736E.mjs";
|
|
5
|
+
import "../../../chunk-MJ2KYKV4.mjs";
|
|
6
|
+
import "../../../chunk-ELOZU7H3.mjs";
|
|
7
7
|
export {
|
|
8
8
|
executor_default as default
|
|
9
9
|
};
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
executor_default
|
|
3
|
-
} from "../../../chunk-
|
|
4
|
-
import "../../../chunk-
|
|
5
|
-
import "../../../chunk-
|
|
6
|
-
import "../../../chunk-
|
|
3
|
+
} from "../../../chunk-P6T7P7PS.mjs";
|
|
4
|
+
import "../../../chunk-K5HG736E.mjs";
|
|
5
|
+
import "../../../chunk-MJ2KYKV4.mjs";
|
|
6
|
+
import "../../../chunk-ELOZU7H3.mjs";
|
|
7
7
|
export {
|
|
8
8
|
executor_default as default
|
|
9
9
|
};
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
executor_default
|
|
3
|
-
} from "../../../chunk-
|
|
4
|
-
import "../../../chunk-
|
|
5
|
-
import "../../../chunk-
|
|
6
|
-
import "../../../chunk-
|
|
3
|
+
} from "../../../chunk-NFZEO7IE.mjs";
|
|
4
|
+
import "../../../chunk-K5HG736E.mjs";
|
|
5
|
+
import "../../../chunk-MJ2KYKV4.mjs";
|
|
6
|
+
import "../../../chunk-ELOZU7H3.mjs";
|
|
7
7
|
export {
|
|
8
8
|
executor_default as default
|
|
9
9
|
};
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
executor_default
|
|
3
|
-
} from "../../../chunk-
|
|
4
|
-
import "../../../chunk-
|
|
5
|
-
import "../../../chunk-
|
|
6
|
-
import "../../../chunk-
|
|
3
|
+
} from "../../../chunk-3KZ47REH.mjs";
|
|
4
|
+
import "../../../chunk-K5HG736E.mjs";
|
|
5
|
+
import "../../../chunk-MJ2KYKV4.mjs";
|
|
6
|
+
import "../../../chunk-ELOZU7H3.mjs";
|
|
7
7
|
export {
|
|
8
8
|
executor_default as default
|
|
9
9
|
};
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
executor_default
|
|
3
|
-
} from "../../../chunk-
|
|
4
|
-
import "../../../chunk-
|
|
5
|
-
import "../../../chunk-
|
|
6
|
-
import "../../../chunk-
|
|
3
|
+
} from "../../../chunk-YQTLVPXN.mjs";
|
|
4
|
+
import "../../../chunk-K5HG736E.mjs";
|
|
5
|
+
import "../../../chunk-MJ2KYKV4.mjs";
|
|
6
|
+
import "../../../chunk-ELOZU7H3.mjs";
|
|
7
7
|
export {
|
|
8
8
|
executor_default as default
|
|
9
9
|
};
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
5
|
-
require('../../../chunk-QDPXTR73.js');
|
|
4
|
+
var _chunkQ3OADP6Tjs = require('../../../chunk-Q3OADP6T.js');
|
|
6
5
|
require('../../../chunk-V5WYZRAM.js');
|
|
6
|
+
require('../../../chunk-QDPXTR73.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
exports.default =
|
|
10
|
+
exports.default = _chunkQ3OADP6Tjs.generator_default; exports.initGeneratorFn = _chunkQ3OADP6Tjs.initGeneratorFn;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import {
|
|
2
2
|
generator_default,
|
|
3
3
|
initGeneratorFn
|
|
4
|
-
} from "../../../chunk-
|
|
4
|
+
} from "../../../chunk-DW34CBLC.mjs";
|
|
5
|
+
import "../../../chunk-MJ2KYKV4.mjs";
|
|
5
6
|
import "../../../chunk-5TB4HFDP.mjs";
|
|
6
|
-
import "../../../chunk-
|
|
7
|
-
import "../../../chunk-ZWNI77JY.mjs";
|
|
7
|
+
import "../../../chunk-ELOZU7H3.mjs";
|
|
8
8
|
export {
|
|
9
9
|
generator_default as default,
|
|
10
10
|
initGeneratorFn
|
package/dist/tsup.config.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/pulumi-tools",
|
|
3
|
-
"version": "0.22.
|
|
3
|
+
"version": "0.22.111",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"description": "Tools for managing Pulumi infrastructure within a Nx workspace.",
|
|
6
6
|
"repository": {
|
|
@@ -156,14 +156,14 @@
|
|
|
156
156
|
"@pulumi/aws": "^6.83.2",
|
|
157
157
|
"@pulumi/awsx": "^2.22.0",
|
|
158
158
|
"@pulumi/pulumi": "^3.225.1",
|
|
159
|
-
"@storm-software/config": "^1.135.
|
|
160
|
-
"@storm-software/config-tools": "^1.189.
|
|
159
|
+
"@storm-software/config": "^1.135.23",
|
|
160
|
+
"@storm-software/config-tools": "^1.189.22",
|
|
161
161
|
"defu": "6.1.4",
|
|
162
162
|
"shelljs": "^0.8.5"
|
|
163
163
|
},
|
|
164
164
|
"devDependencies": {
|
|
165
165
|
"@nx/devkit": "^22.5.4",
|
|
166
|
-
"@types/node": "^25.
|
|
166
|
+
"@types/node": "^25.4.0",
|
|
167
167
|
"nx": "22.5.1",
|
|
168
168
|
"tsup": "8.4.0",
|
|
169
169
|
"untyped": "^2.0.0"
|
|
@@ -171,5 +171,5 @@
|
|
|
171
171
|
"publishConfig": { "access": "public" },
|
|
172
172
|
"executors": "./executors.json",
|
|
173
173
|
"generators": "./generators.json",
|
|
174
|
-
"gitHead": "
|
|
174
|
+
"gitHead": "b7c665a59faca9ef7b8b96af523c2f23c6561b54"
|
|
175
175
|
}
|