From 3cad6a367bd954bdfe5115bce6c0e70b9bc39ad4 Mon Sep 17 00:00:00 2001 From: Adam Ruka Date: Wed, 29 Jul 2020 07:38:19 -0700 Subject: [PATCH] chore(cfn-include): update ReadMe for Nested Stacks (#9314) ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license* --- .../@aws-cdk/cloudformation-include/README.md | 19 +++---------------- 1 file changed, 3 insertions(+), 16 deletions(-) diff --git a/packages/@aws-cdk/cloudformation-include/README.md b/packages/@aws-cdk/cloudformation-include/README.md index 4a591bc74f150..160bddd94cf6c 100644 --- a/packages/@aws-cdk/cloudformation-include/README.md +++ b/packages/@aws-cdk/cloudformation-include/README.md @@ -158,10 +158,7 @@ For example, if you have the following parent template: "ChildStack": { "Type": "AWS::CloudFormation::Stack", "Properties": { - "TemplateURL": "https://my-s3-template-source.s3.amazonaws.com/child-import-stack.json", - "Parameters": { - "MyBucketParameter": "my-bucket-name" - } + "TemplateURL": "https://my-s3-template-source.s3.amazonaws.com/child-import-stack.json" } } } @@ -172,19 +169,9 @@ where the child template pointed to by `https://my-s3-template-source.s3.amazona ```json { - "Parameters": { - "MyBucketParameter": { - "Type": "String", - "Default": "default-bucket-param-name" - } - }, "Resources": { - "BucketImport": { - "Type": "AWS::S3::Bucket", - "Properties": { - "BucketName": { - "Ref": "MyBucketParameter" - } + "MyBucket": { + "Type": "AWS::S3::Bucket" } } }