Skip to content

Commit

Permalink
Merge branch 'master' into chore/cfn-include-bool-for-string
Browse files Browse the repository at this point in the history
  • Loading branch information
mergify[bot] authored Mar 10, 2021
2 parents 187e847 + 3f1c02d commit de99f75
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from %name.PythonModule%.%name.PythonModule%_stack import %name.PascalCased%Stack


app = cdk.App()
%name.PascalCased%Stack(app, "%name.StackName%")
app = core.App()
%name.PascalCased%Stack(app, "%name.PascalCased%Stack")

app.synth()
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@


app = core.App()
%name.PascalCased%Stack(app, "%name.StackName%")
%name.PascalCased%Stack(app, "%name.PascalCased%Stack")

app.synth()

0 comments on commit de99f75

Please sign in to comment.