From 1ad8cdde9399f6776f25a9712fedec6cf59c8036 Mon Sep 17 00:00:00 2001 From: Praveen Gupta Date: Wed, 18 Dec 2024 21:34:21 +0100 Subject: [PATCH] PR updates --- .../troubleshooting/circular-dependency/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/[platform]/build-a-backend/troubleshooting/circular-dependency/index.mdx b/src/pages/[platform]/build-a-backend/troubleshooting/circular-dependency/index.mdx index 849b7c421d9..5c647974e1d 100644 --- a/src/pages/[platform]/build-a-backend/troubleshooting/circular-dependency/index.mdx +++ b/src/pages/[platform]/build-a-backend/troubleshooting/circular-dependency/index.mdx @@ -52,7 +52,7 @@ If you are unable to resolve this error using function's `resourceGroupName` pro ### Circular dependency error with with a custom stack -If you are creating cdk resources and assigning them to a CustomStack, you might also run into this issue. Your error message would look like "The CloudFormation deployment failed due to circular dependency found between nested stacks [storage1234ABCD, auth5678XYZ, **MYCustomStack0123AB**] +If you are creating cdk resources and assigning them to a custom stack, you might also run into this issue. Your error message would look like "The CloudFormation deployment failed due to circular dependency found between nested stacks [storage1234ABCD, auth5678XYZ, **MYCustomStack0123AB**]" To resolve this, try creating your resources in the same stack as the resources you are trying to interact with. For example, if a custom resource such as `sqs` needs to interact with the s3 resource created by `defineStorage`, you can create that `sqs` resource in the stack created by Amplify. You can reference the existing Amplify created stack like