@storm-software/pulumi-tools
Version:
Tools for managing Pulumi infrastructure within a Nx workspace.
18 lines (15 loc) • 443 B
JavaScript
import {
withPulumiExecutor
} from "./chunk-BJHFGUX4.mjs";
// src/executors/config/executor.ts
var executor_default = withPulumiExecutor("config", (options) => [
options.action,
options.showSecrets && `--show-secrets`,
options.secret && `--secret`,
options.path && `--path`,
options.name && options.value && `"${options.name}" "${options.value}"`,
options.stack && `--stack=${options.stack}`
]);
export {
executor_default
};