Skip to content

Commit 889da3e

Browse files
Apply suggestions from code review
Co-authored-by: josef <[email protected]>
1 parent ac37709 commit 889da3e

File tree

1 file changed

+8
-9
lines changed
  • src/pages/[platform]/build-a-backend/troubleshooting/circular-dependency

1 file changed

+8
-9
lines changed

src/pages/[platform]/build-a-backend/troubleshooting/circular-dependency/index.mdx

+8-9
Original file line numberDiff line numberDiff line change
@@ -33,32 +33,31 @@ If you see this error "The CloudFormation deployment failed due to circular depe
3333

3434
```ts title="amplify/functions/my-function/resource.ts"
3535
export const queryFunction = defineFunction({
36-
name: 'myFunction',
36+
name: 'query-function',
3737
resourceGroupName: 'data',
3838
});
3939
```
4040

4141
Similarly, if you are using your `function` as an auth trigger, you can group your `function` with other resources in the `auth` stack to break the circular dependency.
4242

43-
```ts title="function.ts"
43+
```ts title="amplify/functions/my-function/resource.ts"
4444
export const preSignUpTrigger = defineFunction({
45-
name: 'myFunction',
46-
entry: '../handler.ts',
45+
name: 'pre-sign-up',
4746
resourceGroupName: 'auth',
4847
});
4948
```
50-
If you are unable to resolve this error using function's `resourceGroupName` property, please create an issue [here](https://github.com/aws-amplify/amplify-backend/issues/new/choose)
49+
If you are unable to resolve this error using function's `resourceGroupName` property, please [create an issue on the GitHub repository for Amplify backend](https://github.com/aws-amplify/amplify-backend/issues/new/choose)
5150

5251
### Circular dependency error with with a custom stack
5352

54-
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**]"
53+
If you are creating resources using the [AWS Cloud Development Kit (AWS CDK)](https://aws.amazon.com/cdk/) 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**]"
5554

56-
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
55+
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 underlying Amazon 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
5756

58-
```ts title="backend.ts"
57+
```ts title="amplify/backend.ts"
5958
const queue = new sqs.Queue(backend.storage.stack, 'MyCustomQueue');
6059
```
6160

6261
## Circular dependency error between resources in the same stack
6362

64-
If you see this error "The CloudFormation deployment failed due to circular dependency found between resources [resource1, resource2] in a single stack", that means the resources themselves have a circular dependency in the same stack. For handling such errors, see https://aws.amazon.com/blogs/infrastructure-and-automation/handling-circular-dependency-errors-in-aws-cloudformation/
63+
If you see this error "The CloudFormation deployment failed due to circular dependency found between resources [resource1, resource2] in a single stack", that means the resources themselves have a circular dependency in the same stack. For handling such errors, review the [AWS Blog post for handling circular dependency errors](https://aws.amazon.com/blogs/infrastructure-and-automation/handling-circular-dependency-errors-in-aws-cloudformation/).

0 commit comments

Comments
 (0)