We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9daf1fa commit ec72425Copy full SHA for ec72425
index.js
@@ -104,7 +104,8 @@ class ServerlessStepFunctionsLocal {
104
105
const configPath = path.join(servicePath, 'serverless.yml');
106
107
- const parsed = await this.serverless.yamlParser.parse(configPath);
+ const preParsed = await this.serverless.yamlParser.parse(configPath);
108
+ const parsed = await this.serverless.variables.populateObject(preParsed);
109
110
this.stateMachines = parsed.stepFunctions.stateMachines;
111
0 commit comments