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.
2 parents 9daf1fa + ec72425 commit b7433c8Copy full SHA for b7433c8
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