Skip to content

Commit

Permalink
chore(cloudformation-include): outputs resource id misspelled $Ouputs (
Browse files Browse the repository at this point in the history
…#28916)

Fix the misspelled of outputs resource id $Ouputs.

Closes #28908 

----

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
  • Loading branch information
ayush-shah-1501 authored and SankyRed committed Feb 8, 2024
1 parent 2363e38 commit c148af0
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ export class CfnInclude extends core.CfnElement {
this.createHook(hookName);
}

const outputScope = new Construct(this, '$Ouputs');
const outputScope = new Construct(this, '$Outputs');
for (const logicalId of Object.keys(this.template.Outputs || {})) {
this.createOutput(logicalId, outputScope);
}
Expand Down

0 comments on commit c148af0

Please sign in to comment.