Skip to content

Commit

Permalink
feat(pulumi): Added path to config generator
Browse files Browse the repository at this point in the history
  • Loading branch information
TriPSs committed May 16, 2024
1 parent a42223b commit dcca572
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/pulumi/src/executors/config/config.impl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ export interface PreviewOptions {

action: string
secret?: boolean
path?: boolean
name?: string
value?: string
}
Expand All @@ -30,6 +31,7 @@ export default async function configExecutor(
'pulumi config',
options.action,
options.secret && `--secret`,
options.path && `--path`,
options.name && options.value && `"${options.name}" "${options.value}"`,
options.stack && `--stack=${options.stack}`
]), {
Expand Down
3 changes: 3 additions & 0 deletions packages/pulumi/src/executors/config/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@
"index": 0
}
},
"path": {
"type": "boolean"
},
"secret": {
"type": "boolean"
},
Expand Down

0 comments on commit dcca572

Please sign in to comment.