Skip to content

Commit a441d37

Browse files
chore(cloudformation-include): outputs resource id misspelled $Ouputs (#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*
1 parent 69f4b8d commit a441d37

File tree

3 files changed

+10
-10
lines changed
  • packages
    • @aws-cdk-testing/framework-integ/test/cloudformation-include/test
      • integ.intrinsic-deletion-policy.js.snapshot
      • integ.nested-stacks.js.snapshot
    • aws-cdk-lib/cloudformation-include/lib

3 files changed

+10
-10
lines changed

packages/@aws-cdk-testing/framework-integ/test/cloudformation-include/test/integ.intrinsic-deletion-policy.js.snapshot/tree.json

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/@aws-cdk-testing/framework-integ/test/cloudformation-include/test/integ.nested-stacks.js.snapshot/tree.json

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/aws-cdk-lib/cloudformation-include/lib/cfn-include.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ export class CfnInclude extends core.CfnElement {
173173
this.createHook(hookName);
174174
}
175175

176-
const outputScope = new Construct(this, '$Ouputs');
176+
const outputScope = new Construct(this, '$Outputs');
177177
for (const logicalId of Object.keys(this.template.Outputs || {})) {
178178
this.createOutput(logicalId, outputScope);
179179
}

0 commit comments

Comments
 (0)