Troubleshooting
This section provides known issue resolution when deploying the solution.
If these instructions don’t address your issue, Contact AWS Support provides instructions for opening an Support case for this solution.
Problem: Handling intermittent issues during solution deployment
You receive a CREATE_FAILED message for the single stack or the underlying module’s CloudFormation stacks during the stack deployment.
Resolution
Complete the following steps to resolve this issue:
-
Sign in to the CloudFormation console
. -
From the list of CloudFormation stacks, select any stack that is in ROLLBACK_COMPLETE state. This could be an underlying module’s specific stack or the single-click
scene-intelligence-with-rosbag-on-aws-createstack. -
Delete the stack by following the instructions for Deleting a stack on the AWS CloudFormation console in the AWS CloudFormation User Guide.
-
Modify the
scene-intelligence-with-rosbag-on-aws-create.templateCloudFormation template by following these steps:-
Download the template
. -
Change the wait condition names. Wait condition names must be unique on every creation of a CloudFormation stack. The following is an example on how to modify the wait condition handler name from
CodeBuildRunWaitConditionHandler01toCodeBuildRunWaitConditionHandler02, and update theCallbackUrlto reflect the changed wait condition handler name underCodeBuildRuncustom resource.## Update WaitConditionHandle Logical Id CodeBuildRun: Type: AWS::CloudFormation::CustomResource Properties: ServiceToken: !GetAtt CodeBuildLambda.Arn BuildProjectName: ! Ref CreateUpdateCodeBuildProject CallbackUrl: !Ref CodeBuildRunWaitConditionHandler01 # Update Here CodeBuildRunWaitConditionHandler01 # Update Here Type: AWS::CloudFormation::WaitConditionHandle ## Example of Updated Template Content CodeBuildRun: Type: AWS::CloudFormation::CustomResource Properties: ServiceToken: !GetAtt CodeBuildLambda.Arn BuildProjectName: ! Ref CreateUpdateCodeBuildProject CallbackUrl: !Ref CodeBuildRunWaitConditionHandler02 # Update Here CodeBuildRunWaitConditionHandler02 # Update Here Type: AWS::CloudFormation::WaitConditionHandle
-
-
Create a new deployment using the modified
scene-intelligence-with-rosbag-on-aws-create.templateCloudFormation template by following the instructions in Launch the stack.