Add ability to pass in initial variable values to deployment wizards (#14224)

This commit is contained in:
Charles Gagnon
2021-02-10 13:55:16 -08:00
committed by GitHub
parent bb29ae00c9
commit 45adb7d8d7
8 changed files with 26 additions and 16 deletions

View File

@@ -498,3 +498,8 @@ export interface Command {
additionalEnvironmentVariables?: NodeJS.ProcessEnv;
ignoreError?: boolean;
}
/**
* Map of the set of variables and the values to assign to them upon initialization - overriding the base default.
*/
export type InitialVariableValues = { [key: string]: string | boolean };