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 7162e84 commit 0bc038dCopy full SHA for 0bc038d
lib/naming.js
@@ -3,15 +3,15 @@
3
module.exports = {
4
getStateMachineLogicalId(stateMachineName, Name) {
5
if( Name ) {
6
- return Name;
+ return `${this.provider.naming.getNormalizedFunctionName(Name)}`
7
}
8
return `${this.provider.naming
9
.getNormalizedFunctionName(stateMachineName)}StepFunctionsStateMachine`;
10
},
11
12
getStateMachineOutputLogicalId(stateMachineName, Name) {
13
14
15
16
17
.getNormalizedFunctionName(stateMachineName)}StepFunctionsStateMachineArn`;
0 commit comments