diff --git a/packages/@aws-cdk-testing/framework-integ/test/cloudformation-include/test/integ.intrinsic-deletion-policy.js.snapshot/tree.json b/packages/@aws-cdk-testing/framework-integ/test/cloudformation-include/test/integ.intrinsic-deletion-policy.js.snapshot/tree.json index 3c5b96273ac99..11cebc6bb18d0 100644 --- a/packages/@aws-cdk-testing/framework-integ/test/cloudformation-include/test/integ.intrinsic-deletion-policy.js.snapshot/tree.json +++ b/packages/@aws-cdk-testing/framework-integ/test/cloudformation-include/test/integ.intrinsic-deletion-policy.js.snapshot/tree.json @@ -66,9 +66,9 @@ "version": "10.3.0" } }, - "$Ouputs": { - "id": "$Ouputs", - "path": "Stack/Stack/$Ouputs", + "$Outputs": { + "id": "$Outputs", + "path": "Stack/Stack/$Outputs", "constructInfo": { "fqn": "constructs.Construct", "version": "10.3.0" diff --git a/packages/@aws-cdk-testing/framework-integ/test/cloudformation-include/test/integ.nested-stacks.js.snapshot/tree.json b/packages/@aws-cdk-testing/framework-integ/test/cloudformation-include/test/integ.nested-stacks.js.snapshot/tree.json index bbdc91c031aa6..96cb498db3884 100644 --- a/packages/@aws-cdk-testing/framework-integ/test/cloudformation-include/test/integ.nested-stacks.js.snapshot/tree.json +++ b/packages/@aws-cdk-testing/framework-integ/test/cloudformation-include/test/integ.nested-stacks.js.snapshot/tree.json @@ -116,9 +116,9 @@ "version": "10.1.85" } }, - "$Ouputs": { - "id": "$Ouputs", - "path": "ParentStack/ParentStack/ChildStack/ChildStack/$Ouputs", + "$Outputs": { + "id": "$Outputs", + "path": "ParentStack/ParentStack/ChildStack/ChildStack/$Outputs", "constructInfo": { "fqn": "constructs.Construct", "version": "10.1.85" @@ -190,9 +190,9 @@ "version": "10.1.85" } }, - "$Ouputs": { - "id": "$Ouputs", - "path": "ParentStack/ParentStack/$Ouputs", + "$Outputs": { + "id": "$Outputs", + "path": "ParentStack/ParentStack/$Outputs", "constructInfo": { "fqn": "constructs.Construct", "version": "10.1.85" diff --git a/packages/aws-cdk-lib/cloudformation-include/lib/cfn-include.ts b/packages/aws-cdk-lib/cloudformation-include/lib/cfn-include.ts index 19dcdaeca533a..9a1018e79e026 100644 --- a/packages/aws-cdk-lib/cloudformation-include/lib/cfn-include.ts +++ b/packages/aws-cdk-lib/cloudformation-include/lib/cfn-include.ts @@ -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); }